使用 Microsoft Visual Build Tools 2017 从源安装 Python 包
Installing Python package from source using Microsoft Visual Build Tools 2017
我有一个 python 包由于依赖 Windows 构建工具而无法安装。
我尝试过的事情:
安装最新版本 Visual Studio 2017(据我所知,它应该包含 Microsoft Visual C++ 14.0)。
直接从此处 https://www.visualstudio.com/downloads/#build-tools-for-visual-studio-2017.
安装 Visual Studio 2017 构建工具
明确地将 C:\Program Files (x86)\Microsoft Visual Studio17\BuildTools
放在我的路径上。
卸载所有 Visual Studio 并重试。
到目前为止还没有运气。我尝试重新启动终端,重新启动计算机等...我正在使用 GitBash,这可能是相关的,尽管它不会给我带来任何问题。
当我安装这些工具时,我确保检查了 'Visual C++ Build Tools' 工作流程,它选择了“单个组件”选项卡下可用的许多行项目的一些子集。
在我下面的示例中,我正在安装一个语言模型,但我相信我的问题比这更普遍。我发现很难理解众多组件中的哪些组件与我的任务相关。我想知道的是:如何验证我是否正确配置了构建工具以及我是否拥有正确的版本?如有任何建议或指导,我们将不胜感激。
错误:
$ pip36 install https://github.com/kpu/kenlm/archive/master.zip
Collecting https://github.com/kpu/kenlm/archive/master.zip
Downloading https://github.com/kpu/kenlm/archive/master.zip (526kB)
Installing collected packages: kenlm
Running setup.py install for kenlm: started
Running setup.py install for kenlm: finished with status 'error'
Complete output from command c:\users\ks99999999\appdata\local\programs\python\python36-32\python.exe -u -c "import setuptools, tokenize;__file__='C:\Users\ks99999999\AppData\Local\Temp\pip-tfn5ym94-b uild\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close ();exec(compile(code, __file__, 'exec'))" install --record C:\Users\ks99999999\AppData\Local\Temp\pip-r2e ogfmd-record\install-record.txt --single-version-externally-managed --compile:
running install
running build
running build_ext
building 'kenlm' extension
error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http: //landinghub.visualstudio.com/visual-cpp-build-tools
----------------------------------------
Command "c:\users\ks99999999\appdata\local\programs\python\python36-32\python.exe -u -c "import setuptool s, tokenize;__file__='C:\Users\ks99999999\AppData\Local\Temp\pip-tfn5ym94-build\setup.py';f=getatt r(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __ file__, 'exec'))" install --record C:\Users\ks99999999\AppData\Local\Temp\pip-r2eogfmd-record\install-rec ord.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\ks99999999\Ap pData\Local\Temp\pip-tfn5ym94-build\
Microsoft Visual Studio 不随 out-of-box 任何 VC 编译器(或一般的任何编译器)一起提供。您的安装是模块化的,因此您必须确保您确实在安装 VS2017 时安装了 Visual C++。此外,IIRC、VS2017 附带 Microsoft Visual C++ 15.0。 You can install the 14.0 compiler with the Standalone Microsoft Visual Studio 2015 build tools。确保您也有正确的 setuptools 版本。
您可以通过查看开始菜单 -> 添加/删除程序并检查已安装程序列表来检查安装了哪个版本的 MSVC。
我有一个 python 包由于依赖 Windows 构建工具而无法安装。
我尝试过的事情:
安装最新版本 Visual Studio 2017(据我所知,它应该包含 Microsoft Visual C++ 14.0)。
直接从此处 https://www.visualstudio.com/downloads/#build-tools-for-visual-studio-2017.
安装 Visual Studio 2017 构建工具
明确地将
C:\Program Files (x86)\Microsoft Visual Studio17\BuildTools
放在我的路径上。卸载所有 Visual Studio 并重试。
到目前为止还没有运气。我尝试重新启动终端,重新启动计算机等...我正在使用 GitBash,这可能是相关的,尽管它不会给我带来任何问题。
当我安装这些工具时,我确保检查了 'Visual C++ Build Tools' 工作流程,它选择了“单个组件”选项卡下可用的许多行项目的一些子集。
在我下面的示例中,我正在安装一个语言模型,但我相信我的问题比这更普遍。我发现很难理解众多组件中的哪些组件与我的任务相关。我想知道的是:如何验证我是否正确配置了构建工具以及我是否拥有正确的版本?如有任何建议或指导,我们将不胜感激。
错误:
$ pip36 install https://github.com/kpu/kenlm/archive/master.zip
Collecting https://github.com/kpu/kenlm/archive/master.zip
Downloading https://github.com/kpu/kenlm/archive/master.zip (526kB)
Installing collected packages: kenlm
Running setup.py install for kenlm: started
Running setup.py install for kenlm: finished with status 'error'
Complete output from command c:\users\ks99999999\appdata\local\programs\python\python36-32\python.exe -u -c "import setuptools, tokenize;__file__='C:\Users\ks99999999\AppData\Local\Temp\pip-tfn5ym94-b uild\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close ();exec(compile(code, __file__, 'exec'))" install --record C:\Users\ks99999999\AppData\Local\Temp\pip-r2e ogfmd-record\install-record.txt --single-version-externally-managed --compile:
running install
running build
running build_ext
building 'kenlm' extension
error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http: //landinghub.visualstudio.com/visual-cpp-build-tools
----------------------------------------
Command "c:\users\ks99999999\appdata\local\programs\python\python36-32\python.exe -u -c "import setuptool s, tokenize;__file__='C:\Users\ks99999999\AppData\Local\Temp\pip-tfn5ym94-build\setup.py';f=getatt r(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __ file__, 'exec'))" install --record C:\Users\ks99999999\AppData\Local\Temp\pip-r2eogfmd-record\install-rec ord.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\ks99999999\Ap pData\Local\Temp\pip-tfn5ym94-build\
Microsoft Visual Studio 不随 out-of-box 任何 VC 编译器(或一般的任何编译器)一起提供。您的安装是模块化的,因此您必须确保您确实在安装 VS2017 时安装了 Visual C++。此外,IIRC、VS2017 附带 Microsoft Visual C++ 15.0。 You can install the 14.0 compiler with the Standalone Microsoft Visual Studio 2015 build tools。确保您也有正确的 setuptools 版本。
您可以通过查看开始菜单 -> 添加/删除程序并检查已安装程序列表来检查安装了哪个版本的 MSVC。