Linux(centos, ubuntu) 快速安装anaconda;5秒安装anaconda

1.下载Anaconda安装脚本:

首先,访问Anaconda的官方下载页面:https://www.anaconda.com/products/distribution
在页面上,选择适用于Linux的Python 3.x版本的Anaconda安装脚本。也可以使用wget或curl命令从终端下载。示例:

wget https://repo.anaconda.com/archive/Anaconda3-2023.09-0-Linux-x86_64.sh

2.执行安装脚本

有两种方式:
第一种:

bash Anaconda3-2023.09-0-Linux-x86_64.sh

第二种:

-- 让脚本可执行
chmod +x Anaconda3-2023.09-0-Linux-x86_64.sh
-- 执行脚本
./Anaconda3-2023.09-0-Linux-x86_64.sh

3.安装过程

1.查看安装协议,按下enter查看,如果enter之后不想查看,直接ctrl+c即可到下一步

In order to continue the installation process, please review the license
agreement.
Please, press ENTER to continue
>>> 

2.是否接受协议,输入yes

Do you accept the license terms? [yes|no]
[no] >>> yes

3.选择安装目录,有三种选择

  • 按下enter直接安装到/root/anaconda3目录下
  • 按下ctrl+c退出安装
  • 指定安装位置,输入自己的安装路径;如果只输入了一个目录,则会安装到执行命令的目录下。
Anaconda3 will now be installed into this location:
/root/anaconda3

  - Press ENTER to confirm the location
  - Press CTRL-C to abort the installation
  - Or specify a different location below

[/root/anaconda3] >>> anaconda

4.是否自动化conda环境

大致内容如下:

  • 每次启动终端,是否自动激活conda环境,默认环境通常是base,
  • 自动激活会更新系统配置文件,启动终端时,会提示你激活的是哪个conda环境
  • 如果不希望每次启动终端都激活conda环境,执行命令:conda config --set auto_activate_base false
  • 如果开始选择自动化初始conda,但后来不决定这么做,可以执行命令:conda init --reverse $SHELL
installation finished.
Do you wish to update your shell profile to automatically initialize conda?
This will activate conda on startup and change the command prompt when activated.
If you'd prefer that conda's base environment not be activated on startup,
   run the following command when conda is activated:

conda config --set auto_activate_base false

You can undo this by running `conda init --reverse $SHELL`? [yes|no]
[no] >>> yes

5.测试安装

重新打开窗口,验证conda是否安装成功

conda list

安装anaconda后,就可以使用conda来创建新的环境、安装包、更新包等。anaconda可能会占用大量磁盘空间,它包含了许多预安装的库,如果不需要预安装很多库,可以使用miniconda。

相关推荐

  1. Linux(centos, ubuntu) 快速安装anaconda5安装anaconda

    2023-12-12 21:48:02       66 阅读
  2. 安装Anaconda和PyTorch

    2023-12-12 21:48:02       59 阅读
  3. 最简单安装anaconda

    2023-12-12 21:48:02       55 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2023-12-12 21:48:02       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2023-12-12 21:48:02       100 阅读
  3. 在Django里面运行非项目文件

    2023-12-12 21:48:02       82 阅读
  4. Python语言-面向对象

    2023-12-12 21:48:02       91 阅读

热门阅读

  1. ROS-ROS通信机制-常用API

    2023-12-12 21:48:02       54 阅读
  2. YOLO_embedded: YOLO算法快速嵌入式部署

    2023-12-12 21:48:02       65 阅读
  3. 机房建设设计方案

    2023-12-12 21:48:02       50 阅读
  4. 好题分享(1)

    2023-12-12 21:48:02       66 阅读
  5. ARM NEON加速介绍及使用示例

    2023-12-12 21:48:02       45 阅读
  6. 【设计模式】:单例模式

    2023-12-12 21:48:02       55 阅读
  7. AtCoder Beginner Contest 332

    2023-12-12 21:48:02       66 阅读
  8. 数论——质数与约数

    2023-12-12 21:48:02       57 阅读
  9. 关于Pytorch和Numpy中的稀疏矩阵sparse的知识点

    2023-12-12 21:48:02       281 阅读