我决定尝试安装pygame并遇到了这个问题:
Requirement 'pygame-1.9.3-cp37-cp37m-win32.whl' looks like a filename, but the file does not exist
pygame-1.9.3-cp37-cp37m-win32.whl is not a supported wheel on this platform.
到目前为止,一切都很顺利,而且我非常接近安装pygame。这也是我输入的内容:
pip install pygame-1.9.3-cp37-cp37m-win32.whl
答案 0 :(得分:0)
您通常使用像pip这样的工具来安装车轮。如果这是针对PyPI上托管的项目,请将其留给工具来发现和下载文件。 为此,您需要安装wheel包:
Pip install wheel
然后你可以告诉pip安装项目(如果有的话,它会下载轮子),或直接轮式文件:
pip install project_name # discover, download and install
pip install wheel_file.whl # directly install the wheel
车轮模块一旦安装,也可以从命令行运行,您可以使用它来安装已下载的车轮:
python -m wheel install wheel_file.whl
另请参阅车轮项目文档。