Dies ist eine Methode, um den Befehl conda zu deaktivieren und mit dem Befehl conda zu aktivieren. Voraussetzung ist, dass Anaconda installiert ist.
In .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 <<<
Es sollte so etwas geben. Es
function conda(){
unset -f conda
Wann
}
Lassen Sie es uns mit umgeben.
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 <<<
}
Ich habe eine Conda-Funktion definiert, damit ich Conda starten kann. Geben Sie conda ein, um diese Funktion aufzurufen. Deaktivieren Sie diese Funktion nach dem Aufruf mit `` `unset -f conda```.
Ich habe es während des Unterrichts geschrieben, bitte vergib mir, obwohl es ein grober Artikel ist.
Recommended Posts