Continuum Anaconda Fedora 22 Linux 路径

Continuum Anaconda Fedora 22 Linux 路径

更新后Windows 10我的双启动系统遇到问题,所以我必须重新安装软呢帽22

因此,从一个新的系统开始,我重新安装了我的工作环境。比较麻烦的一个安装是连续体 Anaconda Python

我遵循默认值,这意味着它将 Fedora 安装在/root目录中。

无论我做什么,我都无法启动 Anaconda 包的任何部分,即使我以 root 身份cd进入/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 吗?

相关内容