今日分的收获主要在于学会了使用CONDA
并且成功的在学校的服务器里面安装了fastqc
- bash在运行下载sh之中的的作用
- conda对于国外网站下载设置的重要性
- bash之后要用source ~/.bashrc来进行激活软件
conda的使用技巧
- conda search 目标软件
- conda install 目标软件 -y
- conda install 目标软件-版本 -y
- conda remove 目标软件 -y
- 查看conda 环境 conda info --envs
- 建立软件的conda环境 conda create -n 环境名 软件名 -y
- 切换conda环境 source activate 环境名
- source deactivate:退出环境
- conda remove -n 环境名 --all 卸载环境
网友评论