virtualenvwrapper functions unavailable in shell scripts

前端 未结 8 801
夕颜
夕颜 2020-12-01 03:44

So, once again, I make a nice python program which makes my life ever the more easier and saves a lot of time. Ofcourse, this involves a virtualenv, made with the mkvi

8条回答
  •  庸人自扰
    2020-12-01 04:06

    add these lines to your .bashrc or .bash_profile

    export WORKON_HOME=~/Envs
    source /usr/local/bin/virtualenvwrapper.sh
    

    and reopen your terminal and try

提交回复
热议问题