mkvirtualenv : command not found
2020-07-07 本文已影响0人
Peter杰
首先打开环境变量的文件,
sudo vim /etc/profile
然后把virtualenvwrapper的环境变量粘贴过去,:wq保存。
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
然后使修改后的文件生效:
source /etc/profile
这样就把虚拟环境创建好了。