No Module Named Pyglet
I'm having a strange issue with pyglet. After running pip install pyglet and restarting my command line application, I'm still unable to run a python script that imports pyglet. E
Solution 1:
This line
pyglet in c:\python34\lib\site-packages
^
means that you installed module for python 3.4. You need to install it for 2.7 instead:
python2.7 -m pip install pyglet
or, which is more reliable in your case
python -m pip install pyglet
Solution 2:
i think that u should reinstall pip for a newer version and with the "satisfy" error usually comes up when u have a module already installed.
Post a Comment for "No Module Named Pyglet"