【아마추어의 비망록】 anaconda를 인스톨하면 GNOME이 일어나지 않는다! , , , 직관적으로 해결
소개
파이썬을 사용하여 AI와 기계 학습을 공부하려고 anaconda를 설치하면 그놈이 일어나지 않습니다. 인터넷을 배회하면 알려진 문제라는 것이 판명. 게다가 이것이야! 라는 대책이 없는 것 같다. 그 중에는, 「GUI를 사용하지 말아라!」라고 말하고 있는 사람도,,,
여러가지 시험한 결과, 어떻게든 참을 수 있는 곳까지 왔으므로 메모해 두기로 했습니다. 다만, 아마추어의 직감식이므로 시험되는 분은 자기 책임으로 부탁합니다.
환경
How to...
1단계
htps //w w. 아나 콘다. 코 m / st 리부치온 / 에서 해당 Distribution을 다운로드하고 지침에 따라 설치합니다.
포인트! 설치가 끝나더라도 기꺼이 anaconda-navigator를 시작하지 않고 2 단계로.
2단계
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
# >>> conda initialize >>> <--ここから
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/seimeisama/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/seimeisama/anaconda3/etc/profile.d/conda.sh" ]; then
. "/home/seimeisama/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/home/seimeisama/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<< ここまで
3단계
.barshrc
# .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
.bashrc_conda
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$('/home/seimeisama/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
if [ $? -eq 0 ]; then
eval "$__conda_setup"
else
if [ -f "/home/seimeisama/anaconda3/etc/profile.d/conda.sh" ]; then
. "/home/seimeisama/anaconda3/etc/profile.d/conda.sh"
else
export PATH="/home/seimeisama/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda initialize <<<
4단계
5단계
$ source .bashrc_conda
요약
매우 원시적인 방법으로 부끄럽지만, 일단, 이것으로 움직이고 있기 때문에 자신적으로는 OK♪
추가
$ export PATH="/home/seimeisama/anaconda3/bin:$PATH"
Reference
이 문제에 관하여(【아마추어의 비망록】 anaconda를 인스톨하면 GNOME이 일어나지 않는다! , , , 직관적으로 해결), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/seimei/items/8d456eccb20dd4b56a58텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)