-
Notifications
You must be signed in to change notification settings - Fork 1
installation
Nick Santos edited this page Feb 17, 2017
·
8 revisions
- Download the "wheel" file for the arcproject code. It will be named something like
arcproject-wq*.whl
where * indicates version information and other information you can ignore. - Open a command prompt as an administrator and navigate to the folder with the wheel file in it
- Type
C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\python -m pip install .\WHEEL_FILE.whl
- replaceWHEEL_FILE.whl
with the name of the wheel file from the first step (for examplearcproject_wq-0.9-py2.py3-none-any.whl
) - The code is now installed. To use the tools, you'll need to add the toolbox
(
wq-processing-toolbox.pyt
) to ArcGIS Pro.
- Download the "wheel" file for the arcproject code. It will be named something like
arcproject-wq*.whl
where * indicates version information and other information you can ignore. - In Windows, navigate to
C:\Python27
. In that folder, you may have many other folders, some of which will start withArcGIS
and be written likeArcGIS10.3
- note the highest version number folder (for example, if you have folders namedArcGIS10.3
andArcGIS10.4
you want to noteArcGIS10.4
) - we'll use it in a moment. - Open a command prompt and navigate to the folder with the wheel file in it
- Type
C:\Python27\ArcGIS10.4\python -m pip install .\WHEEL_FILE.whl
- replaceArcGIS10.4
with the folder name noted in step 2 and replaceWHEEL_FILE.whl
with the name of the wheel file from the first step (for examplearcproject_wq-0.9-py2.py3-none-any.whl
). Hit Enter to execute the command. - The code is now installed. To use the tools, you'll need to add the toolbox
(
wq-processing-toolbox.pyt
) to ArcMap.
If you would like to do optional advanced setup methods to isolate the ArcProject code, see the following. These methods supercede the methods on this page and should be done instead of these methods, not in addition to.