1

嗨,谁能告诉我如何在 Windows 操作系统中安装 python 的 pathos 包。我想在 Windows 操作系统中安装 pathos。我收到了酸洗和取消酸洗的错误,

4

2 回答 2

1

我是悲情的作者。这对我有用:

  • 安装 Visual Studio Community 2015 RC
  • 为 Visual Studio 2015 安装了 Python Tools 2.2 RC
  • 为 Python 2.7 安装了 Microsoft Visual C++ 编译器
  • 为 Python 2.7 安装了 Miniconda 3.10.1(64 位)
  • 安装 Git for Windows 1.9.5-preview20150319
  • 康达安装点子
  • conda 安装 setuptools
  • pip install git+ https://github.com/uqfoundation/pathos.git@master

pathos是纯 python,但是它的依赖项之一需要C编译器,您可以使用免费的 MSVC。

于 2015-10-24T01:50:12.800 回答
0

在 Windows 10 上安装 pathos 包时,我遇到了同样的问题。对我有用的是遵循Mike描述的过程,直到最后一步,我将其替换为以下内容:

pip install pathos --no-cache-dir

防止 pip 进入缓存。

于 2017-01-15T15:38:57.230 回答