Python

在主目錄中作為 python 包安裝時如何啟動 Glances?

  • July 13, 2017

我將glances作為一個python包安裝在主目錄中:

pip install --user glances

如何啟動掃視?

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

我剛剛檢查了一眼 github.io 並將使用者安裝顯示為:

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

並確保本地路徑是您的 $PATH 的一部分:

export PATH=$PATH:~/mylocalpath/bin

你應該被設置。

引用自:https://unix.stackexchange.com/questions/378314