-
在下面的网站上找到要下载的anaconda版本,把对应的.sh文件下载下来
https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ -
把sh文件压缩成.zip文件,拖到启智平台的调试页面
上传到平台上
unzip Anaconda3-5.0.1-Linux-x86_64.zip
chmod +x Anaconda3-5.0.1-Linux-x86_64.sh
./Anaconda3-5.0.1-Linux-x86_64.sh
出现"more"字样后,一直回车
输入 yes
回车
再输入yes
出现上述界面,说明安装成功。
4.
依次输入下面两行代码,配置环境变量
export PATH="/$HOME/anaconda3/bin:$PATH"
export PATH="$PATH:$HOME/anaconda/bin"
在conda中创建虚拟环境
conda create -n python39 python=3.9