Bash

安裝的 python 腳本警告不在 PATH 上

  • November 1, 2020

我已經使用 pip 安裝了一個腳本,安裝腳本後返回以下錯誤:

WARNING: The script testapp is installed in '/home/pi/.local/bin' which is not on PATH.
 Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.

我怎樣才能解決這個問題?因此,該腳本在任何目錄中都不可執行。我嘗試添加export PATH=/home/pi/dir:$PATH到我的末尾,.bashrc但這似乎無法使腳本在任何地方都可用,因此更改不正確。

提前致謝。

我認為您缺少隱藏目錄的 .local 。

路徑= $ PATH:/home/pi/.local/bin;export $ 小路

引用自:https://serverfault.com/questions/1040873