1/1

easy_installでPyOpenGLのアンインストール

easy_install -m PyOpenGL==3.0.0a5

Searching for PyOpenGL==3.0.0a5
Best match: pyopengl 3.0.0a5
Processing pyopengl-3.0.0a5-py2.5.egg
Removing pyopengl 3.0.0a5 from easy-install.pth file

Using c:\python25\lib\site-packages\pyopengl-3.0.0a5-py2.5.egg

Because this distribution was installed --multi-version, before you can
import modules from this package in an application, you will need to
'import pkg_resources' and then use a 'require()' call similar to one of
these examples, in order to select the desired version:

pkg_resources.require("pyopengl") # latest installed version
pkg_resources.require("pyopengl==3.0.0a5") # this exact version
pkg_resources.require("pyopengl>=3.0.0a5") # this version or higher

Processing dependencies for PyOpenGL==3.0.0a5
Finished processing dependencies for PyOpenGL==3.0.0a5

できました。ありがとうございます。
  • -
  • -

1/1