I just got myself ST3 and followed some tutorials, all of which recommended to install Anaconda via the ST3 package control:
CTRL+SHIFT+P -> "install" -> "anaconda_go".
I then tried to use the packages that come with anaconda (i.e. NumPy) through:
import numpy as np
This results in:
NameError: name 'numpy' is not defined
Turns out that the Continuum analytics package I wanted called Anaconda is not the one I got (the ST3 extension). So I instead got myself:
CTRL+SHIFT+P -> "install" -> "conda".
But again, I am unable to use the packages that come with it, like Numpy.
How can I use the packages that come with the conda installer?