问题
i installed virtualenv
and virtualenvwrapper
and with this command i created an environment:
mkvirtualenv cv
it works and after creating i was in the new environment. right now i restarted my computer and i want to activate
that environment again, but how?
i use this tutorial to install Opencv on my Mac and one of steps is creating new environment. im confused right now:
http://www.pyimagesearch.com/2015/06/15/install-opencv-3-0-and-python-2-7-on-osx/
i uses virtualenv
already but im new to virtualenvwrapper
and i dont know what i have to do now
回答1:
To activate an environment, we use workon
command.
workon cv
If you forget the virtualenv name, you can just type:
workon
And you will see a list of available environments.
回答2:
virtualenvwrapper works best if you use mkproject
instead of mkvirtualenv
. This makes a virtualenv and a project directory to put your files that use the virtualenv. After that you can use workon
to switch back to your virtualenv and project.
回答3:
I ran into the same problem because I misread the docs and accidentally specified the directory where I put my repos as my $WORKON_HOME
, so virtualenvwrapper couldn't find my virtualenvs.
$WORKON_HOME
should actually be where your virtualenvs live (I like to make mine at ~/.virtualenvs
). This is where the command mkvirtualenv
creates the virtualenv for your project. Set this environment variables in your .bashrc
(or equivalent), make sure your new $WORKON_HOME
directory exists, and then make a new virtualenv. That should fix the problem.
回答4:
Read the Docs
workon
List or change working virtual environments
$ workon cv
回答5:
I too faced the same problem. So first I uninstalled virtualenvwrapper using,
$ sudo pip uninstall virtualenvwrapper
Then I performed the documentation steps again with some changes this time. You can also do the same, it will work.
Install Steps
$ sudo pip install virtualenvwrapper
Now create a directory to store your virtual environment
$ mkdir ~/.virtualenvs
Now,
$ export WORKON_HOME=~/.virtualenvs
Now you have to open .bashrc file and add one line to it.
So, to do this first copy the line written below and then run,
$ nano .bashrc
And now paste it at the end of the script. /usr/local/bin/virtualenvwrapper.sh
This will add virtualenvwrapper.sh to .bashrc
Now run ,
source /usr/local/bin/virtualenvwrapper.sh
Finally run to reload .bashrc,
source ~/.bashrc
Finally you can use
mkvirtualenv
andworkon
commands without any problem.
Hope it helps.
来源:https://stackoverflow.com/questions/34239037/activating-environment-in-virtualenvwrapper