以下记录安装过程中遇到的错误,文章最后处附完整的安装流程。
遇到的错误:
PyOpenGL is already installed with the same version as the provided wheel. Use --force-reinstall to force an installation of the wheel.
问题解决:
找到的参考网页如下:
https://www.it1352.com/2325333.html
我的解决步骤:
1、命令行中输入
pip uninstall pyopengl
卸载原来的版本
2、然后在PyOpenGL_xxxxx.whl文件所在目录下执行
pip install PyOpenGL‑3.1.5‑cp39‑cp39‑win_amd64.whl
( 删除线部分根据python版本不同而不同)
安装成功。
3、用import来测试,出现了新的错误:
No module named ‘OpenGL’
4、经过检查发现是因为我的电脑之前安装的aniconda对应的是python的3.8版本,但我的python是3.7版本的。
版本不一致导致了以上的错误(我下载了3.8版本的wheel但是用的却是3.7版本的python)
于是我将miniconda卸载了&#