sudo:conda:找不到命令


18

.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安装东西时,出现此错误:

sudo: conda: command not found

我该如何解决这个问题?

Answers:


18

好吧,我不习惯于如此迅速地找到问题的答案,但是为此,我做到了:

我只需要删除命令sudo之前的conda

说明:

所有conda命令必须在没有超级用户特权的情况下运行。

希望它能在将来对某人有所帮助。


5
确实,这是正确的答案。Conda使用用户权限安装在主目录中。您应该避免将sudo与conda一起使用,因为这样会以非用户权限写入文件,并且此后每次都必须使用sudo来修改这些文件。
asmeurer 2015年

4
如果执行此操作,则会得到一个CondaIOError: Missing write permissions in: /anaconda
托马斯·阿勒

@ThomasAhle您应该开始一个新问题,您可以链接这个问题并指定您确切地做了什么以及结果是什么。
Melebius

在我的情况下,我安装了conda,opt/anaconda所以现在需要使用sudo运行它。所以我固定它加入export PATH="/opt/anaconda/bin:$PATH"到我的sudo的庆典
加布里埃尔博览会

7

如果收到CondaIOErrorwith conda命令,则意味着conda目录没有足够的权限来下载和保存新库。

只需在终端中执行以下命令,您就会很高兴:

sudo chown -R username /home/username/path-to-conda-folder/

sudo chmod -R +x /home/username/path-to-conda-folder/

根据您的PC 更改用户名conda文件夹的路径

希望这可以帮助!:)


1

如果您决定以sudo权限运行,则应运行conda,并明确指定conda可执行文件的路径。该路径可以用哪种conda进行调查。


0

您可以执行以下操作,然后再运行sudo命令类型

which conda

然后使用完整的conda路径

sudo ~/install/ananconda//5.1../etc install myPackageName

欢迎来到Ask Ubuntu!如您所见,这个问题是在YEARS年前提出的,已经有了公认的答案。请不要在古老的问题上添加答案,这不会对已接受的答案有所改善。
舒茨先生18年


非常感谢。它对我有用。
Mohsin Mahmood
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.