Il s'agit d'une méthode pour désactiver la commande conda et l'activer avec la commande conda. La condition est que l'anaconda soit installé.
Dans .bashrc, .zshrc
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/user/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/user/anaconda3/etc/profile.d/conda.sh" ]; then
. "/home/user/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/home/user/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
Il devrait y avoir quelque chose comme. Il
function conda(){
unset -f conda
Quand
}
Entourons-le de.
function conda(){
unset -f conda
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/user/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/user/anaconda3/etc/profile.d/conda.sh" ]; then
. "/home/user/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/home/user/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
}
J'ai défini une fonction conda pour pouvoir démarrer conda.
Tapez conda pour appeler cette fonction.
Après l'appel, désactivez cette fonction avec unset -f conda
.
Je l'ai écrit pendant le cours, alors pardonnez-moi s'il s'agit d'un article approximatif.
Recommended Posts