I am very new to SublimeText3.
I have Anaconda setup in my system and all the packages such as numpy, pandas and others are installed in /home/sam/anaconda/lib/site_packages..
Since my package distribution is in Anaconda's site packages, I created a new build system in sublime Text pointing to the Anaconda's Distribution. Now when I build the complete code- my imports, such as ..
import numpy
import pandas
works fine.
However, When I manually run the imports in the console of the sublime text. I see the below error.
>>> import numpy
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named 'nump
But, When I import packages like os, glob and others, I see no error.
I am not sure how to proceed, I would really appreciate any guidance.