Fedora에서 Anaconda의 PATH 변수 [닫기]

Fedora에서 Anaconda의 PATH 변수 [닫기]

/opt/anaconda3에 Anaconda를 설치한 후 PATH 변수를 추가하여 사용자에 대해 ~/.bashrc를 수정했습니다.

# .bashrc

# Source global definitions
if [ -f /etc/bashrc ]; then
        . /etc/bashrc
fi

# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=

# User specific aliases and functions
export PATH="/opt/anaconda3/bin:$PATH"

하지만 터미널을 열고 입력하면

conda list

알겠어요

bash: conda: command not found

무엇이 문제일까요?

답변1

터미널을 다시 시작하거나 source ~/.bashrc.

관련 정보