Skip to content

installation

Nick Santos edited this page Feb 17, 2017 · 8 revisions

Setting ArcProject code up

Basic Setup - ArcMap

  1. 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.
  2. Open a command prompt as an administrator and navigate to the folder with the wheel file in it
  3. Type C:\Program Files\ArcGIS\Pro\bin\Python\envs\arcgispro-py3\python -m pip install .\WHEEL_FILE.whl - replace WHEEL_FILE.whl with the name of the wheel file from the first step (for example arcproject_wq-0.9-py2.py3-none-any.whl)
  4. The code is now installed. To use the tools, you'll need to add the toolbox (wq-processing-toolbox.pyt) to ArcGIS Pro.

Basic Setup - ArcGIS Pro

  1. 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.
  2. In Windows, navigate to C:\Python27. In that folder, you may have many other folders, some of which will start with ArcGIS and be written like ArcGIS10.3 - note the highest version number folder (for example, if you have folders named ArcGIS10.3 and ArcGIS10.4 you want to note ArcGIS10.4) - we'll use it in a moment.
  3. Open a command prompt and navigate to the folder with the wheel file in it
  4. Type C:\Python27\ArcGIS10.4\python -m pip install .\WHEEL_FILE.whl - replace ArcGIS10.4 with the folder name noted in step 2 and replace WHEEL_FILE.whl with the name of the wheel file from the first step (for example arcproject_wq-0.9-py2.py3-none-any.whl). Hit Enter to execute the command.
  5. The code is now installed. To use the tools, you'll need to add the toolbox (wq-processing-toolbox.pyt) to ArcMap.

Advanced Setup

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.

Clone this wiki locally