Installing python modules on Ubuntu

后端 未结 5 909
轻奢々
轻奢々 2020-12-08 11:45

I need to install some modules for python on Ubuntu Linux 12.04. I want pygame and livewires but I\'m not sure how to install them.

I have the py file for livewire

5条回答
  •  -上瘾入骨i
    2020-12-08 12:14

     curl -O http://python-distribute.org/distribute_setup.py
     sudo python distribute_setup.py
     sudo easy_install pygame
    

    Differences between distribute, distutils, setuptools and distutils2

提交回复
热议问题