wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
没有weget,先安装
yum -y install wget
bash Miniconda3-latest-Linux-x86_64.sh
Anaconda3 will now be installed into this location:
/home/work/anaconda3
– Press ENTER to confirm the location
– Press CTRL-C to abort the installation
– Or specify a different location below
To activate conda's base environment in your current shell session:
eval "$(/miniconda3/bin/conda shell.YOUR_SHELL_NAME hook)"
To install conda's shell functions for easier access, first activate, then:
conda init
If you'd prefer that conda's base environment not be activated on startup,
set the auto_activate_base parameter to false:
conda config --set auto_activate_base false
Thank you for installing Miniconda3!
要在当前shell会话中激活conda的基本环境:eval "$(/miniconda3/bin/conda shell。“YOUR_SHELL_NAME钩);如果您不希望在启动时激活conda的基本环境,请将auto_activate_base参数设置为false: conda config——set auto_activate_base false感谢您安装Miniconda3!
source ./miniconda3/bin/activate env_name 激活指定环境
conda deactivate 退出miniconda
若想平时不在conda环境,则需要将.bashrc文件中的conda设置内容注释 。 平时在~/miniconda3/bin/下执行 source activate就可使用conda了。 更便捷的方法是在~/.bashrc 下添加 :
alias condaac=‘source ~/miniconda3/bin/activate’
alias condadac=‘conda deactivate’
#添加镜像(清华源)
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 --set show_channel_urls yes
#查看
conda config --get channels
or
cat ~/.condarc
默认创建到miniconda安装目录下的envs里
conda create -n py38 python=3.8 # -n是name的缩写,python不指定版本就默认最新版
conda env list
conda env remove -n Test1
使用conda安装指定版本的库:使用conda install命令安装指定版本的库。例如,要安装Python 3.6版本的numpy库,可以使用以下命令:
conda install numpy=1.18.5 python=3.6
conda install numpy python=3.8
这将从Conda仓库中下载并安装指定版本的numpy库及其所有依赖项。请注意,您需要指定要安装的库的名称和版本号,并且如果要安装特定版本的库,则需要指定要使用的Python版本。