如何在Anaconda(Windows 10)上安装Textract?

时间:2018-12-05 09:03:10

标签: python windows anaconda

我正在尝试在Windows上安装Anaconda,但出现以下错误:

Conda: screenshot of error

Pip install: screenshot of error

错误消息:

(base) C:\Users\vinay>**conda install -c conda-forge textract**

Solving environment: **failed**

PackagesNotFoundError: The following packages are not available from current channels:

  **- textract**

Current channels:

  - https://conda.anaconda.org/conda-forge/win-64
  - https://conda.anaconda.org/conda-forge/noarch

To search for alternate channels that may provide the conda package you're looking for, navigate to https://anaconda.org and use the search bar at the top of the page.

2 个答案:

答案 0 :(得分:0)

您是否尝试过通过pip安装? https://pypi.org/project/textract/

pip install textract

答案 1 :(得分:0)

I was running into the same problems. I believe that it's because we're using a Windows 64-bit edition, which isn't supported for the anaconda install, as shown below:

Anaconda Textract Screenshot

As you can see, it only supports win-32. I'm also installing it via the pip install textract route as well.