Virtualenv - workon command not found

后端 未结 2 1415
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-14 09:07

I followed these steps to set up virtualenv + virtualenvwrapper:

$ sudo apt-get install python3-pip

$ sudo pip3 install virtualenv
$ sudo pip3 install virtu         


        
相关标签:
2条回答
  • 2020-12-14 09:52

    You need to add commands

    export WORKON_HOME=~/.virtualenvs
    VIRTUALENVWRAPPER_PYTHON='/usr/bin/python3'
    source /usr/local/bin/virtualenvwrapper.sh
    

    to your ~/.bashrc file. So that whenever you start shell these commands are loaded automatically.

    For the reference.

    0 讨论(0)
  • 2020-12-14 10:02

    So far it was working fine but I restarted the shell

    The reason is because you restarted the shell.

    If you want this to work with each shell, you'll need to add these to your ~/.bashrc file:

    export WORKON_HOME=~/.virtualenvs
    VIRTUALENVWRAPPER_PYTHON='/usr/bin/python3'
    source /usr/local/bin/virtualenvwrapper.sh
    

    After adding this, you'll want to source ~/.bashrc so the changes take effect. You'll find that you have access to virtualenvwrapper facilities in each new shell.

    0 讨论(0)
提交回复
热议问题