Resolving 2 Python Version In Mac OSX
I am running Mac OS X 10.11.5. I have two Python versions on my machine: Python 2.7 (Inbuilt python in OSX) and Python 3.5 (Anaconda version- 4.1.1) The path is set up as shown
Solution 1:
My approach would be to create a new conda enviornment and install your packages there. This will help you avoid any issues if you still want to use 2.7. Example would be:
conda create --name foo python=3 pandas Theano
Post a Comment for "Resolving 2 Python Version In Mac OSX"