我从this site下载了PyGLEW以使用PyGPU。但我不确定如何安装它。
我尝试用通常的技术安装它。但它没有成功。
$ sudo python setup.py install
running install
running build
running install_data
error: can't copy 'pyglew.so': doesn't exist or not a regular file
我无法安装pip
sudo pip install pyglew
...
No matching distribution found for pyglew
还有其他方法可以安装PyGLEW吗?
答案 0 :(得分:2)
您当前的目录应该是下载的文件夹。导航到此目录后,运行python setup.py build
,然后运行python setup.py install
。