업데이트됨윈도우 10듀얼 부팅 시스템에 문제가 있어서 다시 설치해야 했습니다.페도라 22.
그래서 새로운 시스템부터 시작하여 작업 환경을 다시 설치했습니다. 가장 번거로운 설치 중 하나는연속체Anaconda Python.
저는 기본값을 따랐습니다. 이는 /root
디렉터리에 Fedora를 설치한다는 의미입니다.
내가 무엇을 하든 루트로 cd
로그인 하더라도 Anaconda 패키지의 어떤 부분도 시작할 수 없습니다 /root
.
이 내 꺼야 /root/.bashrc
:
# User specific aliases and functions
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# Enable tab completion
source home/brian/git-completion.bash
# colors!
green="\[\033[0;32m\]"
blue="\[\033[0;34m\]"
purple="\[\033[0;35m\]"
reset="\[\033[0m\]"
# Change command prompt
source ~/git-prompt.sh
export GIT_PS1_SHOWDIRTYSTATE=1
# '\u' adds the name of the current user to the prompt
# '\$(__git_ps1)' adds git-related stuff
# '\W' adds the name of the current directory
export PS1="$purple\u$green\$(__git_ps1)$blue \W $ $reset"
# added by Anaconda 2.3.0 installer
export PATH="/root/anaconda/bin:$PATH"
내 것을 조정해야 합니까 PATH
? 나는 내가 생각할 수 있는 모든 것을 시도했다.
Anaconda를 다른 곳에 다시 설치해야 합니까?