I've installed Anaconda (with Python 3.5.2) and although while using IPython/PyCharm (after setting it to use Anaconda) I have access to all the packages, while using Python 3 through the terminal it refers to the python3.5.1 that comes with Ubuntu and it doesn't recognize any package.
I've set my path as explained here
echo $PATH
:
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/myname/anaconda3/bin
How to solve this?
echo $PATH
and add its output to your question? – edwinksl Sep 24 '16 at 10:30PATH
? – edwinksl Sep 24 '16 at 10:37export PATH=/home/ofirarzi/anaconda3/bin:$PATH
. Then dosource ~/.profile
and see if it works. – edwinksl Sep 24 '16 at 10:42