Continuum Anaconda Fedora 22 路径

Continuum Anaconda Fedora 22 路径

在 Windows 10 更新导致我的双启动系统出现问题后,我不得不重新安装 Fedora 22。因此,我从一个全新的系统开始重新安装了我的工作环境。 Continuum Anaconda Python 是一个比较麻烦的安装。我遵循默认值,这意味着它安装在我的 Fedora /root 目录中。无论我做什么,我都无法启动 Anaconda 包的任何部分——即使我以 root 身份 cd 进入 /root。这是我的 .bashrc (也在 /root 目录中):

# 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"

如果我在控制台提示符下输入“ipython”,我会得到

bash: ipython: command not found...
Similar command is: 'python'

这就是为什么我认为这可能是路径问题。我应该调整我的路径吗?我已经尝试了我能想到的一切。我应该在其他位置重新安装 Anaconda 吗?

相关内容