更新済みWindows 10デュアルブートシステムに問題があり、再インストールする必要がありました。Fedora 22。
それで、新しいシステムから始めて作業環境を再インストールしました。最も面倒なインストールの1つは連続体Anaconda Python。
私はデフォルトに従いました。これは、/root
ディレクトリにFedoraをインストールすることを意味します。
私が何をしても、rootとして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を他の場所に再インストールする必要がありますか?