FooBar
FooBar

Reputation: 16488

Anaconda changes environment for python, but not ipython

In short: How do I set the environment for iPython with conda?

$ which python
/usr/local/anaconda2/bin/python
$ which ipython
/usr/local/anaconda2/bin/ipython
$ source activate myenv2
discarding /usr/local/anaconda2/bin from PATH
prepending /home/username/.conda/envs/myenv2/bin to PATH
$ which python
/home/username/.conda/envs/myenv2/bin/python
$ which ipython
/usr/bin/ipython

Upvotes: 1

Views: 247

Answers (1)

FooBar
FooBar

Reputation: 16488

iPython needs to be seperately installed for each conda environment, as via comment from @cel

Upvotes: 1

Related Questions