Pycharm multiple anaconda python packages -


i have project created in pycharm anaconda3 (python3) root, , doesnt recognize packages (for example in case seaborn package). when try install terminal says, seaborn installed in anaconda2 (python2.7). 1

how can manage 2 different versions of anaconda, because still have work legacy (python2.7) codes.

my project interpreter set 3.5, whereas terminal doesn't change accordingly.

2

your situation ideal case usage of virtual environments in python. virtualenvs allow maintain versions of python without of dependency linking etc looks getting into.

with anaconda, process easier can use anaconda's built in manager create separate python 2 environment below.

conda create --name <yourenvname> python=2.7 anaconda 

which install full blown anaconda environment in 2.7. doing allow switch between python 2 , python 3 without having these managment issues.

for more information see here in anaconda on using 2or3


Comments

Popular posts from this blog

javascript - Clear button on addentry page doesn't work -

c# - Selenium Authentication Popup preventing driver close or quit -

tensorflow when input_data MNIST_data , zlib.error: Error -3 while decompressing: invalid block type -