I am trying to access ArcGIS Pro's flavor of arcpy. I installed the 3.4.0 distributed with Pro (beta 5, and pr), open IDLE fine, but... arcpy is not automatically in the sys.path.
Is there a .pth file I am missing?
Python 3.4.1 (v3.4.1:c0e311e010fc, May 18 2014, 10:45:13) [MSC v.1600 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> import arcpy
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import arcpy
ImportError: No module named 'arcpy'
>>> import sys
>>> print("\n".join(sys.path))
C:\Windows\system32
C:\Python34\Lib\idlelib
C:\Python34\python34.zip
C:\Python34\DLLs
C:\Python34\lib
C:\Python34
C:\Python34\lib\site-packages
>>>