![Fedora에서 Anaconda의 PATH 변수 [닫기]](https://linux55.com/image/105779/Fedora%EC%97%90%EC%84%9C%20Anaconda%EC%9D%98%20PATH%20%EB%B3%80%EC%88%98%20%5B%EB%8B%AB%EA%B8%B0%5D.png)
/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
.