Ubuntu安装conda
下载Anaconda安装包
清华镜像
可以在网站查找对应系统的最新的anaconda安装包。右键拷贝链接
然后在服务器端输入如下指令下载wget https://mirrors.bfsu.edu.cn/anaconda/archive/Anaconda3-2022.10-Linux-x86_64.sh
安装
bash Anaconda3-2022.10-Linux-x86_64.sh
期间有ENTER的地方可以直接回车,遇到MORE信息,可以摁Q键跳过,遇到需要输入yes|no的地方输入yes即可。
配置环境
安装完成后在终端修改环境变量,键入vim ~/.bashrc
在最下面键入export PATH="/home/***/anaconda3/bin:$PATH"
# *是主机名或者用户名然后生效source ~/.bashrc
这一块如果在 by running conda init? [yes|no] 输入了yes会自动配置好,无需再手动添加。但需要关闭窗口,或者输入source ~/.bashrc 当出现(base)则安装成功
键入conda --version
如果有版本输入则安装成功
配置国内镜像源
查看anaconda中已经存在的镜像源
1
conda config --show channels
添加镜像源(永久添加)
1
2
3
4
5# 清华源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge/设置搜索时显示通道地址
1
conda config --set show_channel_urls yes
若不想按照上述步骤添加镜像,可使用以下命令直接指定安装时使用的镜像地址(以opencv为例):
1
conda install opencv-python -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
一般在使用conda install安装时会出现包无法找到或者安装失败的情况,此时可以使用pip install来尝试安装(以opencv为例):1
pip install opencv-python
若安装速度过慢可单独指定安装镜像加快安装:1
2pip install opencv -i https://mirrors.aliyun.com/pypi/simple/
此处列举国内常用pip安装镜像:
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:https://mirrors.aliyun.com/pypi/simple/
中国科技大学: https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:https://pypi.hustunique.com/
山东理工大学:https://pypi.sdutlinux.org/
豆瓣:https://pypi.douban.com/simple/
本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!