为什么“virtualenv:命令未找到”?

问题描述 投票:1回答:2

它告诉我没有找到virtualenv命令,没有人知道问题可能是什么?

Brendans-MacBook-Pro:TestProject brendan.whiting$ python --version
Python 3.5.0
Brendans-MacBook-Pro:TestProject brendan.whiting$ pip install virtualenv
Requirement already satisfied (use --upgrade to upgrade): virtualenv in /Users/brendan.whiting/Library/Python/3.5/lib/python/site-packages
Brendans-MacBook-Pro:TestProject brendan.whiting$ virtualenv venv
-bash: virtualenv: command not found
Brendans-MacBook-Pro:TestProject brendan.whiting$ 
python virtualenv
2个回答
1
投票

如果使用mac os x,则路径可能不包含在PYTHONPATH变量中,因此您需要使用模块的实际路径附加它。


-1
投票

Virtualenv似乎不太“友好”,所以我建议改为使用venv。

https://docs.python.org/3/tutorial/venv.html

© www.soinside.com 2019 - 2024. All rights reserved.