我刚刚通过键入安装了 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
答案1
安装包裹 foo
不一定提供命令 foo
。对于 django,命令是
django-admin startproject <name>
根据安装位置,您可能仍然需要修改 PATH。