我最近将 miniconda2 移动到另一个目录,现在我无法激活 conda 环境。请任何建议来解决这个问题。
bash: conda: command not found
我最近将 miniconda2 移动到另一个目录,现在我无法激活 conda 环境。请任何建议来解决这个问题。
bash: conda: command not found
我有两个环境工作的 conda,我已经安装了“conda_nb”,自从我安装后,“(base)”这个词总是出现在我的提示中,我发现我可以使用conda deactivate
.
我发现了一个类似的问题,但这不是完全相同的问题,因为我已经尝试了所有可能的解决方案,但没有一个对我有用。因此,这个问题的根源并不完全相同。
删除 conda_nb 对我不起作用,也没有更改我在此处发布的 .bashrc 行:
# added by Anaconda3 2018.12 installer
# >>> conda init >>>
# !! Contents within this block are managed by 'conda init' !!
__conda_setup="$(CONDA_REPORT_ERRORS=false '/home/pablo/anaconda3/bin/conda' shell.bash hook 2> /dev/null)"
if [ $? -eq 0 ]; then
\eval "$__conda_setup"
else
if [ -f "/home/pablo/anaconda3/etc/profile.d/conda.sh" ]; then
. "/home/pablo/anaconda3/etc/profile.d/conda.sh"
CONDA_CHANGEPS1=false conda activate base
else
\export PATH="/home/pablo/anaconda3/bin:$PATH"
fi
fi
unset __conda_setup
# <<< conda init <<<
pd:在 .profile 中没有关于 conda 的信息。und 在 anacnoda3/profile.di 中没有发现任何有用的东西(但也许有)。
我有一台互联网连接速度慢的电脑。尝试安装大约 500MB 的包 ( conda install -c pytorch pytorch
) 时,我得到一个下载超时。
我尝试在其他地方手动下载此文件,然后将其放在我的主目录中并使用conda install --offline ~/pytorch-1.0.0-py3.7_cuda9.0.176_cudnn7.4.1_1.tar.bz2
(如此处)安装。这本身就可以工作,但是,当我尝试根据它安装更多软件包时,conda 决定下载它:
The following packages will be UPDATED:
pytorch: 1.0.0-py3.7_cuda9.0.176_cudnn7.4.1_1 <unknown> --> 1.0.0-py3.7_cuda9.0.176_cudnn7.4.1_1 pytorch
Proceed ([y]/n)? y
Downloading and Extracting Packages
pytorch-1.0.0 | 498.7 MB | ###########5 | 8%
CondaHTTPError: HTTP 000 CONNECTION FAILED for url <https://conda.anaconda.org/pytorch/linux-64/pytorch-1.0.0-py3.7_cuda9.0.176_cudnn7.4.1_1.tar.bz2>
Elapsed: -
An HTTP error occurred when trying to retrieve this URL.
HTTP errors are often intermittent, and a simple retry will get you on your way.
注意... <unknown> --> ... pytorch
. 显然,当与 一起安装时--offline
,包源是未知的,这会导致重新下载。我也天真地尝试将文件放入~/miniconda3/pkgs
,没有成功。
有没有办法增加 conda 的下载超时限制,或者让它识别预先下载的 .tar.bz2 包文件?
我知道它与pytorch关系不大,但我只是保持真实姓名不变。
当我尝试使用它获取联机帮助页时,man
它似乎什么也没有显示,并且表现得好像我只是按了 Enter
~$ man ls
~$ man man
我已经尝试了这些页面的解决方案,但无济于事
question1 question2。最后一个问题完全符合我的情况,但修复似乎不起作用。虽然info
似乎有效。
以下是一些附加信息:
~$ man --version
man 2.7.6.1
~$ type -p man
/usr/bin/man
~$ type -t man
file
~$ manpath
/home/abhilash/anaconda3/man:/usr/local/man:/usr/local/share/man:/usr/share/man:/usr/lib/jvm/java-8-oracle/man
~$ uname -a
Linux abhilash-ThinkPad-T440 4.13.0-38-generic #43-Ubuntu SMP Wed Mar 14 15:20:44 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
更新
~$ type -a man
man is /usr/bin/man
~$ env | grep 'PAGER\|^MAN'
~$
更新 2
~$ ls -1 /usr/share/man/man1 | wc -l
2145
~$ ls -l "$(type -p pager)"
lrwxrwxrwx 1 abhilash abhilash 18 Apr 16 18:43 /home/abhilash/anaconda3/bin/pager -> ../lib/R/bin/pager
~$ ls -l "$(readlink "$(type -p pager)")"
ls: cannot access '../lib/R/bin/pager': No such file or directory
我正在学习有关机器学习的 Cousera 课程。我们必须使用一些特定的工具,例如 Graphlab create。然而,在安装 Anaconda 之后
bash /Download/Anaconda2-4.0.0-Linux-x86_64.sh
我必须用 Python 2.7.x 创建一个新的 conda 环境(我现在不知道为什么他们没有迁移到 python 3,但似乎这是老师们做事的方式)
conda create -n gl-env python=2.7 anaconda=4.0.
它回答了我conda: command not found
我阅读了vincent 发布的相关问题,并尝试了 George Udosen 的最佳答案
sudo mv /root/anaconda3 /home/$mike
但我还是收到了mv: cannot stat '/root/anaconda3': No such file or directory
我使用此处.sh
的 32 位文件安装了 Conda 。
以下是运行良好的安装过程的基本部分:
Do you approve the license terms? [yes|no]
[no] >>> yes
Miniconda3 will now be installed into this location:
/home/begueradj/miniconda3
- Press ENTER to confirm the location
- Press CTRL-C to abort the installation
- Or specify a different location below
[/home/begueradj/miniconda3] >>>
PREFIX=/home/begueradj/miniconda3
installing: python-3.4.2-0 ...
installing: conda-env-2.0.1-py34_0 ...
installing: openssl-1.0.1k-0 ...
installing: pycosat-0.6.1-py34_0 ...
installing: pyyaml-3.11-py34_0 ...
installing: readline-6.2-2 ...
installing: requests-2.5.1-py34_0 ...
installing: sqlite-3.8.4.1-0 ...
installing: system-5.8-1 ...
installing: tk-8.5.15-0 ...
installing: xz-5.0.5-0 ...
installing: yaml-0.1.4-0 ...
installing: zlib-1.2.8-0 ...
installing: conda-3.8.3-py34_0 ...
Python 3.4.2 :: Continuum Analytics, Inc.
creating default environment...
installation finished.
Do you wish the installer to prepend the Miniconda3 install location
to PATH in your /home/begueradj/.bashrc ? [yes|no]
[no] >>> yes
Prepending PATH=/home/begueradj/miniconda3/bin to PATH in /home/begueradj/.bashrc
A backup will be made to: /home/begueradj/.bashrc-miniconda3.bak
For this change to become active, you have to open a new terminal.
Thank you for installing Miniconda3!
begueradj@begueradj-HP-Compaq-6510b-KE130ET-ABF:~/Desktop$
当我键入 sudo conda install something 时,出现此错误:
sudo: conda: command not found
我该如何解决这个问题?