方法

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 Support アプリのダウンロード

ダウンロード オプションに移動

関連情報

このトピックについてさらに調べる