【发布时间】:2018-04-08 17:16:57
【问题描述】:
我已经安装了 Anaconda 并将环境变量 export PATH="~/anaconda/bin:$PATH" 添加到我的 .zshrc 但仍然无法在我的终端中运行任何“conda”命令。我已按照这些命令(source) 安装 anaconda。
# Go to home directory
cd ~
# You can change what anaconda version you want at
# https://repo.continuum.io/archive/
wget https://repo.continuum.io/archive/Anaconda3-4.2.0-Linux-x86_64.sh
zsh Anaconda3-4.2.0-Linux-x86_64.sh -b -p ~/anaconda
rm Anaconda3-4.2.0-Linux-x86_64.sh
echo 'export PATH="~/anaconda/bin:$PATH"' >> ~/.zshrc
# Refresh basically
source ~/.zshrc
我错过了什么吗?
【问题讨论】:
标签: python-3.x anaconda fedora