USGS EGIS web pages
EGIS Home
EGIS Support
Metadata
Training
Email Lists
Esri Events
External web pages
Esri Support
Esri Product Help
Esri GeoNet
GIS Stack Exchange
EGIS wiki space (here)
...
python -m site --user-site
C:\Users\username\AppData\Roaming\Python\Python27\site-packages
...
If you get an error message when you try to import, a common cause is version incompatibilities between Esri's python environment modules and the conda modules. (Condo takes care of compatibility across its environment, but it can't know about versions Esri uses in their python install.) In the pandas example, version 0.10.1 also appears to use the same 1.6.1 version of numpy used by ArcGIS 10.1.x, but some errors occur when trying to import pandas due to some other incompatibility. The solution was to modify the Anaconda environment to use an older version of pandas (0.10.0):. The other critical packages are included to avoid having Anaconda install some other incompatible packages.
conda install -n
arc101 arc101 python=2.7.5 matplotlib=1.3.0 numpy=1.6.1
pandas=0.10.0
http://www.continuum.io/blog/conda
...