PC安装好conda,调用特殊环境
##conda 激活3.4
export PATH=~/biosoft/miniconda3/bin:$PATH
conda create --name python37 python=3.7 # 创建一个名为python34的环境,指定Python版本是3.4(不用管是3.4.x,conda会为我们自动寻找3.4.x中的最新版本)
source activate python37
python --version
conda info -e
source deactivate python37 # deactive python3.4
conda remove --name python37 --all #remove enveriment
### 查看已经安装的packages
conda list
#conda install -n python37 -c conda-forge -y argparse pandas tqdm
conda install -c conda-forge -y tqdm
#conda install -c anaconda -y argparse
conda install -n python37 -y pandas
服务器安装
TMPDIR=~/tmp bash Miniconda3-latest-Linux-x86_64.sh -p ~/biosoft/conda -b
source ~/biosoft/conda/etc/profile.d/conda.sh
conda activate base
conda install -c bioconda ont-tombo
网友评论