Python

即使安裝了“foo”,也沒有找到命令“foo”

  • September 15, 2017

我剛剛通過鍵入安裝了 django,pip install django但現在無法通過鍵入來使用它django startproject sitename。輸出是:

No command 'django' found, did you mean: 

  some suggestions here

當我再次嘗試輸入pip install django時,我得到:

Requirement already satisfied: django in
`/data/data/com.termux/files/usr/lib/python3.6/site-packages`

我怎麼解決這個問題?


echo $HOME返回/data/data/com.termux/files/home

echo $PATH返回/data/data/com.termux/files/usr/bin:/data/data/com.termux/files/usr/bin/applets

安裝 foo不一定提供命令 foo。在 django 的情況下,命令是

django-admin startproject <name>

並且根據安裝位置,您可能仍需要修改 PATH。

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