操作方法

操作方法:使用 Python 命令提示符克隆 Python 环境

Last Published: November 8, 2023

摘要

ArcGIS Pro provides a user-friendly interface to manage Python environments with the Python Package Manager; a tool that can create, clone, activate and remove Python environments. However in some instances, the Manage Environment dialog does not allow cloning or creating a new environment.

As a workaround, Python environments can be cloned using the Python Command Prompt. Use the instructions provided in this article.

过程

  1. Run the Python Command Prompt as an administrator.
    1. Click the Start icon.
    2. Navigate to the ArcGIS folder.
    3. Right-click Python Command Prompt > More > Open file location.
    4. Right-click Python Command Prompt and click Run as administrator.
  2. Search for all the available Python environments by entering the following command:
conda env list
The Python Command Prompt with the list command highlighted.
  1. Identify the name of the Python environment to clone. In this example, the environment to be cloned is arcgispro-py3.
The Python Command Prompt with the environment highlighted.
  1. Clone the environment by entering the following command:
conda create --clone <environment to clone>  --name <new environment name>
Note:
For this example, the command is: conda create --clone arcgispro-py3 --name arcgispro-py3_clone
The Python Command Prompt with the clone command highlighted

Alternatively, to clone the environment to a specific directory path, enter the command as:

conda create --clone <environment to clone>  -p <path><new environment name>
Note:
For this example, the command is: conda create --clone arcgispro-py3 -p C:\ProgramFiles\ArcGIS\Pro\bin\Python\envs\arcgispro-py3_clone3
The command code to clone the environment in the C:\ProgramFiles\ArcGIS\Pro\bin\Python\envs\ folder

文章 ID:000020560

从 ArcGIS 专家处获得帮助

联系技术支持部门

下载 Esri 支持应用程序

转至下载选项

相关信息

发现关于本主题的更多内容