我安装了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
我错过了什么吗?
答案 0 :(得分:-1)
以下链接中的步骤对我有用,运行Mac OS X(Linux和Win也包括在内):
https://github.com/landlab/landlab/wiki/Correcting-Install-Paths
最后我发现我的主目录中没有任何文件( .profile 或 .bash_profile ),所以我有自己创建一个(在终端输入"触摸.bash_profile" ),打开它,并在链接中添加他们引用的所需行( export PATH =&# 34; /用户//水蟒/ bin中:$ PATH" )。