猿问

瓶颈错误的造轮失败

所以我试图pip install bottleneck在命令 promt 中安装瓶颈(通过做),我不断收到错误:


    ERROR: Command errored out with exit status 1:

   command: 'c:\users\benito\appdata\local\programs\python\python36\python.exe' 'c:\users\benito\appdata\local\programs\python\python36\lib\site-packages\pip\_vendor\pep517\_in_process.py' build_wheel 'C:\Users\Benito\AppData\Local\Temp\tmp3cb_deoe'

       cwd: C:\Users\Benito\AppData\Local\Temp\pip-install-hrd3bsvr\bottleneck

  Complete output (51 lines):

  running bdist_wheel

  running build

  running build_py

  creating build

  creating build\lib.win-amd64-3.6

  creating build\lib.win-amd64-3.6\bottleneck

  copying bottleneck\_pytesttester.py -> build\lib.win-amd64-3.6\bottleneck

  copying bottleneck\_version.py -> build\lib.win-amd64-3.6\bottleneck

  copying bottleneck\__init__.py -> build\lib.win-amd64-3.6\bottleneck

  creating build\lib.win-amd64-3.6\bottleneck\benchmark

  copying bottleneck\benchmark\autotimeit.py -> build\lib.win-amd64-3.6\bottleneck\benchmark

  copying bottleneck\benchmark\bench.py -> build\lib.win-amd64-3.6\bottleneck\benchmark

  copying bottleneck\benchmark\bench_detailed.py -> build\lib.win-amd64-3.6\bottleneck\benchmark

  copying bottleneck\benchmark\__init__.py -> build\lib.win-amd64-3.6\bottleneck\benchmark

  creating build\lib.win-amd64-3.6\bottleneck\slow

  copying bottleneck\slow\move.py -> build\lib.win-amd64-3.6\bottleneck\slow

  copying bottleneck\slow\nonreduce.py -> build\lib.win-amd64-3.6\bottleneck\slow

  copying bottleneck\slow\nonreduce_axis.py -> build\lib.win-amd64-3.6\bottleneck\slow

  copying bottleneck\slow\reduce.py -> build\lib.win-amd64-3.6\bottleneck\slow

  copying bottleneck\slow\__init__.py -> build\lib.win-amd64-3.6\bottleneck\slow

  creating build\lib.win-amd64-3.6\bottleneck\src


我还安装了 Microsoft Visual C++ 14.0,重置我的计算机并启动程序并在程序中做了同样的事情,我得到了同样的错误。我也完成了pip install wheel,然后完成了pip install bottleneck,我收到了同样的错误。我也有python 3.6


开满天机
浏览 137回答 3
3回答

紫衣仙女

尝试在 Windows 机器上安装 pycaret 时我也遇到了同样的问题。得到错误ERROR: Failed building wheel for bottleneckFailed to build bottleneckERROR: Could not build wheels for bottleneck which use PEP 517 and cannot be installed directly读取输出表明安装过程无法安装瓶颈,因此您必须手动执行此操作。Pip 没有这样做,所以因为我使用的是 Anaconda env,所以 conda install 是要走的路。安装 p5py 和 pep517 也是一个好主意。我可以通过以下步骤解决问题:conda 安装瓶颈点安装 p5py点安装 pep517点安装 pycaret

慕桂英546537

我通过使用该站点的相应轮子手动安装瓶颈来使其工作:www.lfd.uci.edu/~gohlke/pythonlibs/。只需下载适用于您的 Python 版本的文件(在我的情况下为 Bottleneck‑1.3.2‑cp38‑cp38‑win_amd64.whl)并安装它:pip install C:\Users\...

侃侃无极

首先安装 PyPI 然后 pyinstaller 你需要做的就是pip install PyPI pip install pyinstallerPyPI 安装屏幕截图
随时随地看视频慕课网APP

相关分类

Python
我要回答