I downloaded anaconda packaged installer(for python3.5 and 64bit) for osx El Capitan.
After I successfully installed anaconda, I can use matplotlib and other modules on python2. However, I cannot use these modules in python3.
So, I googled and found similar one (How to run Conda?)
I checked my .bash_profile
and found that it automatically created code for anaconda
# added by Anaconda3 4.0.0 installer
export PATH="/Users/username/anaconda/bin:$PATH"
this is my .bash_profile
code for python3
PATH="/Library/Frameworks/Python.framework/Versions/3.5/bin:${PATH}"
However, I still cannot import module on python 3, and cannot use command conda
on command shell.
What should I need to run conda and import modules on python3?? Thanks in advance.