ERROR: Could not find a version that satisfies the requirement preshed==2.0.1

ERROR: Could not find a version that satisfies the requirement preshed==2.0.1

我正在尝试在 Windows 上安装 spaCy。我是 运行ning python 3.6。当我运行

pip install -U spacy

我收到以下错误:

Looking in indexes: https://frs-art.jpmchase.net/artifactory/api/pypi/jpmc-publi                              c-pypi/simple/
Collecting spacy
  Downloading https://frs-art.jpmchase.net/artifactory/api/pypi/jpmc-public-pypi                              /packages/spacy/2.1.4/spacy-2.1.4.tar.gz (29.8MB)
  Installing build dependencies: started
  Installing build dependencies: finished with status 'error'
  ERROR: Complete output from command 'c:\fast\python.6.4\python.exe' 'c:\fast\python.6.4\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\r419957\AppData\Local\Temp\pip-build-env-8u72uukr\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://frs-art.jpm                              chase.net/artifactory/api/pypi/jpmc-public-pypi/simple/ -- setuptools 'wheel>0.32.0.<0.33.0' Cython 'cymem>=2.0.2,<2.1.0' 'preshed>=2.0.1,<2.1.0' 'murmurhash>=0.28.0,<1.1.0' thinc==7.0.0.dev6:
  ERROR: Looking in indexes: https://frs-art.jpmchase.net/artifactory/api/pypi/jpmc-public-pypi/simple/
  Collecting setuptools
    Downloading https://frs-art.jpmchase.net/artifactory/api/pypi/jpmc-public-py                              pi/packages/setuptools/41.0.1/setuptools-41.0.1-py2.py3-none-any.whl (575kB)
  Collecting wheel>0.32.0.<0.33.0
    Downloading https://frs-art.jpmchase.net/artifactory/api/pypi/jpmc-public-pypi/packages/wheel/0.33.4/wheel-0.33.4-py2.py3-none-any.whl
  Collecting Cython
    Downloading https://frs-art.jpmchase.net/artifactory/api/pypi/jpmc-public-pypi/packages/Cython/0.29.2/Cython-0.29.2-cp36-cp36m-win32.whl (1.6MB)
  Collecting cymem<2.1.0,>=2.0.2
    Downloading https://frs-art.jpmchase.net/artifactory/api/pypi/jpmc-public-pypi/packages/cymem/2.0.2/cymem-2.0.2-cp36-cp36m-win32.whl
  Collecting preshed<2.1.0,>=2.0.1
    ERROR: Could not find a version that satisfies the requirement preshed<2.1.0,>=2.0.1 (from versions: 1.0.0, 1.0.1)
  ERROR: No matching distribution found for preshed<2.1.0,>=2.0.1
  ----------------------------------------
ERROR: Command "'c:\fast\python.6.4\python.exe' 'c:\fast\python.6.4\lib\site-packages\pip' install --ignore-installed --no-user --prefix 'C:\Users\r419957\A                              ppData\Local\Temp\pip-build-env-8u72uukr\overlay' --no-warn-script-location --no-binary :none: --only-binary :none: -i https://frs-art.jpmchase.net/artifactory/api/pypi/jpmc-public-pypi/simple/ -- setuptools 'wheel>0.32.0.<0.33.0' Cython 'cymem>=2.0.2,<2.1.0' 'preshed>=2.0.1,<2.1.0' 'murmurhash>=0.28.0,<1.1.0' thinc==7.0.0.dev6" failed with error code 1 in None

然后我尝试通过 运行ning

自行下载 preshed

pip install preshed

但是这并没有安装我需要的版本 2.0.1

当我运行

pip install preshed==2.0.1

我收到以下错误

ERROR: Could not find a version that satisfies the requirement preshed==2.0.1 (from versions: 1.0.0, 1.0.1)
ERROR: No matching distribution found for preshed==2.0.1

如果您能帮助找出问题所在,我们将不胜感激。谢谢。

您已 pip 设置为在您的私人存储库 (frs-art.jpmchase.net) 中查找缺少软件包的软件包。将 preshed 包(及其最终依赖项)上传到私有仓库,或者从 PyPI 安装 preshed

$ pip install preshed --index-url=https://pypi.org/simple/