我正在尝试在Windows中使用pip安装vowpalwabbit。
我的python版本是3.7。由于我是使用vowpalwabbit的新手,我可能忘记配置一些外部依赖项。因此,能否请您解释每一个步骤,使其发挥作用。当我运行以下代码时,我得到了以下错误:
pip install vowpalwabbit
raise Exception('Pre-built vw/python library for Windows is not supported for this python version')
Exception: Pre-built vw/python library for Windows is not supported for this python version```
----------------------------------------
Command "C:\Users\I516\Documents\Newsfeed\venv\Scripts\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\I336\\AppData\\Local\\Temp\\pip-install-3tgy0rvf\\vowpalw
abbit\\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\I336\AppDa
ta\Local\Temp\pip-record-o5qdntld\install-record.txt --single-version-externally-managed --compile --install-headers C:\Users\I336\Documents\Newsfeed\venv\include\site\python3.7\vowp
alwabbit" failed with error code 1 in C:\Users\I336\AppData\Local\Temp\pip-install-3tgy0rvf\vowpalwabbit\```发布于 2019-07-23 04:58:02
上周,PyPI发布了新版本的vowpalwabbit (8.7.0)。此外,Windows还提供了用于64位Python 3.6/3.7的二进制轮子。
如果您使用的是64位版本的Python (或者可以切换到使用它):
pip install vowpalwabbit应该在没有任何额外依赖的情况下正常工作
https://stackoverflow.com/questions/56241319
复制相似问题