美文网首页
【Python】Conda安装

【Python】Conda安装

作者: 盐果儿 | 来源:发表于2023-12-26 03:48 被阅读0次

    1. 搜索Miniconda,进入官网

    https://docs.conda.io/projects/miniconda/en/latest/

    2. 对照自己的系统和想要的版本,根据官网提示进行安装

    ~/miniconda3/miniconda.sh: the path to the Miniconda installation script. The~/represents your home directory.

    -b: It indicates that the installation should be performed in batch mode, which means it won't prompt you for confirmation during the installation process.

    -u: It stands for "update." If Miniconda is already installed, this option ensures that the installer updates the existing installation to the latest version.

    -p ~/miniconda3: This option specifies the installation prefix or the directory where Miniconda will be installed. In this case, it's set to your home directory (~) followed by "miniconda3."

    相关文章

      网友评论

          本文标题:【Python】Conda安装

          本文链接:https://www.haomeiwen.com/subject/bnqlndtx.html