我正在尝试通过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\```
答案 0 :(得分:2)
上周向PyPI发布了新版本的vowpalwabbit(8.7.0)。此外,Windows还提供了用于64位Python 3.6 / 3.7的二进制轮子。
如果您使用的是64位版本的Python(或可以切换到使用它):
pip install vowpalwabbit
应该正常工作,而无需任何其他依赖项