安装Anaconda3-5.0.1-Linux-x86_64.sh python版本是3.6
-
在下面的网站上找到要下载的anaconda版本,把对应的.sh文件下载下来
-
把sh文件压缩成.zip文件,拖到启智平台的调试页面
上传到平台上
cpp
unzip Anaconda3-5.0.1-Linux-x86_64.zip
cpp
chmod +x Anaconda3-5.0.1-Linux-x86_64.sh
cpp
./Anaconda3-5.0.1-Linux-x86_64.sh
出现"more"字样后,一直回车
输入 yes
回车
再输入yes
出现上述界面,说明安装成功。
依次输入下面两行代码,配置环境变量
cpp
export PATH="/$HOME/anaconda3/bin:$PATH"
cpp
export PATH="$PATH:$HOME/anaconda/bin"
在conda中创建虚拟环境
conda create -n python39 python=3.9
安装Anaconda3-2021.05-Linux-x86_64.sh python版本是3.8
https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
还是这个网站,下载对应的安装包到本地(使用迅雷,下载速度很快)
传到调试页面
输入命令
cpp
bash Anaconda3-2021.05-Linux-x86_64.sh
回车 ...
输入yes
回车
输入yes
出现这个界面说明安装成功。
cpp
# 输入这个命令
source ~/.bashrc
查看conda和python的版本