Error:  ImportError: No module named arcpy

相关信息
Article ID: 45618
Software:
ArcGIS for Server 10.1, 10.2.1, 10.2.2, 10.3, 10.3.1, 10.2
Platforms:
Windows Windows 7, Windows 8, Server 2012, Server 2008 R2, Windows 8.1, Server 2012 R2

错误信息
When attempting to import arcpy using 64-bit Python that comes with an ArcGIS Server installation, the following error message appears:

"ImportError: No module named arcpy"

错误原因
The arcpy module's location probably isn't specified correctly within the Server10.x.pth file. This file is in the following location:
<install-drive>\python27\Lib\site-packages
已邀请:

EsriSupport

赞同来自:

解决方案
1. Ensure that the following locations are specified in the Server10.3.pth file (the version of ArcGIS Server determines the name of the .pth file):
C:\Program Files\ArcGIS\Server\arcpy
C:\Program Files\ArcGIS\Server\bin
C:\Program Files\ArcGIS\Server\ArcToolbox\Scripts

The ArcGIS Server Installer also utilizes the sys.path functions and adds the following location to the system path:
C:\Program Files\ArcGIS\Server10.3\arcpy

2. From the main toolbar in ArcMap, open the Python window and run the following commands:
>>> import sys

>>> print sys.path


3. Verify that arcpy is in the system path.
['', u'c:\\program files\\arcgis\\server\\arcpy', 'C:\\windows\\system32', 'C:\\Python27\\ArcGISx6410.3\\Lib\\idlelib',
'C:\\windows\\system32\\python27.zip', 'C:\\Python27\\ArcGISx6410.3\\DLLs', 'C:\\Python27\\ArcGISx6410.3\\lib',
'C:\\Python27\\ArcGISx6410.3\\lib\\plat-win', 'C:\\Python27\\ArcGISx6410.3\\lib\\lib-tk', 'C:\\Python27\\ArcGISx6410.3',
'C:\\Python27\\ArcGISx6410.3\\lib\\site-packages', 'C:\\Program Files\\ArcGIS\\Server\\bin',
'C:\\Program Files\\ArcGIS\\Server\\ArcPy', 'C:\\Program Files\\ArcGIS\\Server\\ArcToolBox\\Scripts']


Python checks both 'sys.path' and the 'Server10.3.pth' file for a module named 'arcpy' when importing arcpy. As long as the location of arcpy is specified, importing arcpy will be successful:
>>> import arcpy
>>>



创建及修改时间
Created: 10/8/2015 Last Modified: 11/13/2015
原文链接
http://support.esri.com/en/kno ... 45618

Aaronbi

赞同来自:

Linux 系统下如何使用

要回复问题请先登录注册