查找您的 Anaconda Python 解释器路径#

IDE 通常要求您指定 Python 解释器的路径。此路径根据您使用的操作系统版本以及 Anaconda 或 Miniconda 版本而异,因此您需要搜索您的文件系统以找到 Python 解释器的正确路径。

您可以使用操作系统的文件管理器搜索 Python 解释器,例如 Windows 上的文件资源管理器、macOS 上的访达或 Ubuntu Linux 上的 Nautilus。

您也可以使用命令行在活动 conda 环境中显示 Python 解释器的位置

  1. 从开始菜单打开 Anaconda Prompt。

  2. 通过运行以下命令激活包含 Python 安装的 conda 环境

    # Replace <ENV_NAME> with the name of the environment
    conda activate <ENV_NAME>
    
  3. 通过运行以下命令找到 Python 解释器

    where python
    

以下是以用户 jsmith 在 Windows 10 上运行 Anaconda3 为例的命令返回

C:\Users\jsmith\Anaconda3\python.exe

# Python image in a conda environment called myenv
C:\Users\jsmith\Anaconda3\envs\myenv\python.exe
  1. 打开一个终端窗口。

  2. 通过运行以下命令激活包含 Python 安装的 conda 环境

    # Replace <ENV_NAME> with the name of the environment
    conda activate <ENV_NAME>
    
  3. 通过运行以下命令找到 Python 解释器

    which python
    

以下是以用户 jsmith 在 macOS 上运行 Anaconda 为例的命令返回

~/anaconda/bin/python

or

/Users/jsmith/anaconda/bin/python

以下是以用户 jsmith 在 Linux 上运行 Anaconda 为例的命令返回

~/anaconda/bin/python

or

/home/jsmith/anaconda/bin/python

注意

根据您是否已安装 Anaconda 或 Miniconda,您主目录中的文件夹可能名为以下之一

  • anaconda

  • anaconda2

  • anaconda3

  • miniconda

  • miniconda2

  • miniconda3