Reputation: 1339
I try to launch iPython qtconsole on a specific env in Anaconda.
Suppose I have an env called "envir1", I use this command to activate then in the prompt activate envir1
.
Then I call ipython qtconsole
but the env of the python is the root env and not "envir1".
Do you know a possible way to achieve that ?
Upvotes: 0
Views: 82
Reputation: 36732
you need to use this command:
$ source activate envir1
To exit this environment and return to the root one:
$ source deactivate
Upvotes: 1