【问题标题】:Cannot install Gensim in Conda env - noarch directory not found无法在 Conda env 中安装 Gensim - 找不到 noarch 目录
【发布时间】:2019-03-12 17:05:35
【问题描述】:

我正在使用 Conda 环境中的远程服务器。所以我之前安装了 Gensim 并且一直在使用它,但是前几天我遇到了这个错误:

没什么大不了的,我会再次!conda install

import sys

!conda install --yes --prefix {sys.prefix} gensim
Solving environment: ...working... failed

CondaHTTPError: HTTP 404 NOT FOUND for url <https://conda.anaconda.org/noarch/noarch/repodata.json>
Elapsed: 00:00.438028
CF-RAY: 4b676bdb1fa378c8-LAX

The remote server could not find the noarch directory for the
requested channel with url: https://conda.anaconda.org/noarch

As of conda 4.3, a valid channel must contain a `noarch/repodata.json` and
associated `noarch/repodata.json.bz2` file, even if `noarch/repodata.json` is
empty. please request that the channel administrator create
`noarch/repodata.json` and associated `noarch/repodata.json.bz2` files.
$ mkdir noarch
$ echo '{}' > noarch/repodata.json
$ bzip2 -k noarch/repodata.json

You will need to adjust your conda configuration to proceed.
Use `conda config --show channels` to view your configuration's current state.
Further configuration help can be found at <https://conda.io/docs/config.html>.

好的,让我们按照指示进行:

mkdir noarch
A subdirectory or file noarch already exists.

echo '{}' > noarch/repodata.json

bzip2 -k noarch/repodata.json
  File "<ipython-input-5-cad6ef02410f>", line 1
    bzip2 -k noarch/repodata.json
                  ^
SyntaxError: invalid syntax

请教 Google 博士:显示频道

!conda config --show channels
channels:
  - noarch
  - conda-forge
  - K183152
  - k183152
  - win-64
  - default
  - pysoundfile
  - loopbio
  - defaults

!conda config --add channels
usage: conda config [-h] [--json] [--debug] [--verbose]
                    [--system | --env | --file FILE]
                    (--show [SHOW [SHOW ...]] | --show-sources | --validate | --describe [DESCRIBE [DESCRIBE ...]] | --write-default | --get [KEY [KEY ...]] | --append KEY VALUE | --prepend KEY VALUE | --set KEY VALUE | --remove KEY VALUE | --remove-key KEY | --stdin)
conda config: error: argument --prepend/--add: expected 2 arguments

!conda config --get
--set auto_update_conda False
--add channels 'defaults'   # lowest priority
--add channels 'loopbio'
--add channels 'pysoundfile'
--add channels 'default'
--add channels 'win-64'
--add channels 'k183152'
--add channels 'K183152'
--add channels 'conda-forge'
--add channels 'noarch'   # highest priority
--set ssl_verify True

好吧,至少我可以在自己的机器上编码 - 哇哦,它在我的 Jupyter Notebook 中降级了 Python:

更多谷歌:

sys.path
Out[9]: 
['C:\\Users\\k183152',
 'C:\\Users\\k183152\\AppData\\Local\\Continuum\\anaconda3\\python37.zip',
 'C:\\Users\\k183152\\AppData\\Local\\Continuum\\anaconda3\\DLLs',
 'C:\\Users\\k183152\\AppData\\Local\\Continuum\\anaconda3\\lib',
 'C:\\Users\\k183152\\AppData\\Local\\Continuum\\anaconda3',
 '',
 'C:\\Users\\k183152\\AppData\\Local\\Continuum\\anaconda3\\lib\\site-packages',
 'C:\\Users\\k183152\\AppData\\Local\\Continuum\\anaconda3\\lib\\site-packages\\win32',
 'C:\\Users\\k183152\\AppData\\Local\\Continuum\\anaconda3\\lib\\site-packages\\win32\\lib',
 'C:\\Users\\k183152\\AppData\\Local\\Continuum\\anaconda3\\lib\\site-packages\\Pythonwin',
 'C:\\Users\\k183152\\AppData\\Local\\Continuum\\anaconda3\\lib\\site-packages\\IPython\\extensions',
 'C:\\Users\\k183152\\.ipython']

!conda install -c conda-forge gensim
Solving environment: ...working... failed

CondaHTTPError: HTTP 404 NOT FOUND for url <https://conda.anaconda.org/noarch/noarch/repodata.json>
Elapsed: 00:00.824175
CF-RAY: 4b677075fe382300-LAX

The remote server could not find the noarch directory for the
requested channel with url: https://conda.anaconda.org/noarch

As of conda 4.3, a valid channel must contain a `noarch/repodata.json` and
associated `noarch/repodata.json.bz2` file, even if `noarch/repodata.json` is
empty. please request that the channel administrator create
`noarch/repodata.json` and associated `noarch/repodata.json.bz2` files.
$ mkdir noarch
$ echo '{}' > noarch/repodata.json
$ bzip2 -k noarch/repodata.json

You will need to adjust your conda configuration to proceed.
Use `conda config --show channels` to view your configuration's current state.
Further configuration help can be found at <https://conda.io/docs/config.html>.



sys.executable
Out[11]: 'C:\\Users\\k183152\\AppData\\Local\\Continuum\\anaconda3\\python.exe'

也许 Gensim 不会安装,因为 NumPy 或 SciPy 没有安装? - 在这一点上真的在黑暗中拍摄:不,他们很好

我仍然遇到同样顽固的 noarch 目录请求频道错误 - 我不知道如何解决它,请帮助 :(

【问题讨论】:

  • 你好,莎拉。欢迎来到 StackOverflow。请将问题本身中的任何输出/代码/错误消息提供为格式化文本。但是,似乎在您的 follow Directions 链接中,您正尝试将 shell 命令直接输入到 Jupyter 笔记本中,但这将被解释为 Python 代码,因此它会失败(因此出现 SyntaxErrors)。我相信您需要执行 !&lt;shell command as googled&gt; 并且 Jupyter 会将该命令作为 shell 运行。或者只是使用终端。
  • 注意,这可能会让人感到困惑,因为 Jupyter Notebooks 可以识别没有 ! 的常见 shell 命令,例如lspwdcd
  • !bzip2 -k noarch/repodata.json 'bzip2' 不是内部或外部命令、可运行程序或批处理文件。
  • 你有bzip2吗?听起来你是在 Windows 上,你可能需要找到专门针对 Windows 的说明
  • 我不相信我在哪里可以下载它?我的资源有限,因为我正在使用 Windows Server 2012 R2 Standard

标签: python windows configuration conda channels


【解决方案1】:

我想我想通了 - 那些添加的频道必须消失。导航到 .condarc 我在我的用户目录中找到它并在记事本中编辑它。删除这些频道并保存。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-08-22
    • 2017-10-16
    • 1970-01-01
    • 1970-01-01
    • 2016-06-12
    • 2021-12-06
    相关资源
    最近更新 更多