当作为 python 包安装在主目录中时,如何启动 Glances?

当作为 python 包安装在主目录中时,如何启动 Glances?

我安装了扫视作为主目录中的 python 包:

pip install --user glances

我怎样才能启动Glances?

[me@server]$ glances
-bash: glances: command not found

答案1

我刚刚检查了 github.io,它显示用户安装为:

export PYTHONUSERBASE=~/mylocalpath
pip install --user glances

并确保本地路径是 $PATH 的一部分:

export PATH=$PATH:~/mylocalpath/bin

你应该已经准备好了。

相关内容