Bioconda
Bioconda
1. Install
Location: link for Miniconda
|
For Zsh environment
Conda would add code for initiate it at the end of the .bashrc
. You may need to copy them in to the ~/.zshrc
if you are using zsh
.
An example of codes after you run cat ~/.bashrc
And then, you can start the conda by `source ~/.zshrc` or open a new terminal. # >>> conda initialize >>> # !! Contents within this block are managed by 'conda init' !! __conda_setup="$('/home/ken/miniconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)" if [ $? -eq 0 ]; then eval "$__conda_setup" else if [ -f "/home/ken/miniconda3/etc/profile.d/conda.sh" ]; then . "/home/ken/miniconda3/etc/profile.d/conda.sh" else export PATH="/home/ken/miniconda3/bin:$PATH" fi fi unset __conda_setup # <<< conda initialize <<<
2. Setup Channels
You may need to add the bin file in your environment
|
Virtual Environment
|
Install into Non-default Location
Reference: saturncloud
|
Delete you Environment
|
Common Software for Bioinformatics
|
Error
UnavailableInvalidChannel: The channel is not accessible or is invalid. channel name: miniconda/cloud/bioconda channel url: https://mirrors.bfsu.edu.cn/miniconda/cloud/bioconda error code: 404 You will need to adjust your conda configuration to proceed. Use `conda config --show channels` to view your configuration's current state, and use `conda config --show-sources` to view config file locations
Solving his by run:
conda config --remove-key channels
GLIBC_2.17
ImportError: /lib64/libc.so.6: version 'GLIBC_2.14' not found ImportError: /lib64/libc.so.6: version 'GLIBC_2.15' not found ImportError: /lib64/libc.so.6: version 'GLIBC_2.17' not found
This error is very wired. When you have sudo right, you can solve it easily. But when you don’t have sudo right, I believe that the quickest way to “solve”, bypass actually, this problem is down-grade your libraries. Most of time, the conflict comes from zlib
and Xz
. This is not the only way to solve it in CentOS 6.
|