我已经使用 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=$PATH:/home/pi/.local/bin;导出 $PATH