linux 一键安装 conda

共计 304 个字符,预计需要花费 1 分钟才能阅读完成。

  1. 下载 Miniconda 安装脚本:

    wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
  2. 运行安装脚本:

    bash Miniconda3-latest-Linux-x86_64.sh

    按照提示完成安装。

  3. 初始化 Conda:

    source ~/miniconda3/etc/profile.d/conda.sh
    source ~/.bashrc
  4. 创建一个新的环境并安装 Python 3.9:

    conda create -n py39 python=3.9
  5. 激活新环境:

    conda activate py39
  6. 验证 Python 版本:

    python --version
正文完
 0
评论(没有评论)