Pymedia Installation On Windows With Python 2.6
I am trying to install latest version of Pymedia from sources. I have Python2.6 and there is no binary available. Started with: python setup.py build and got the following messa
Solution 1:
Somebody has done it, if you're just after pymedia for python2.6 on windows:
Have a look here:
http://www.lfd.uci.edu/~gohlke/pythonlibs/
There's also a version for python2.7
Solution 2:
You need to install all of those modules separately, in a similar fashion (python setup.py install
).
Those other modules are just prerequisites to pymedia, and need to be installed prior to installing pymedia. It's kind of a pain with some libraries, and there are alternatives to take care of installing everything for you.
Post a Comment for "Pymedia Installation On Windows With Python 2.6"