Linux 下安装 Twisted

阅读更多

第一步:安装python 2.6.2:

 

            解压Python-2.6.2.tar.bz2到/opt/

            进入/opt/Python-2.6.2

            将文件“configure”改为可执行

            type "./configure" in the current directory and when it finishes, type "make".  This creates an executable "./python"; to install in /usr/local, first do "su root" and then "make install"。

            执行"./configure " => 执行“make ”=> 执行"make install "

 

第二步,安装twisted:

 

             解压Twisted-8.2.0.tar.bz2到/opt/

             在文件夹Twisted-8.2.0/下执行

 

                python setup.py install

 

第三步,安装zope.interface-3.3.0:

 

            下载地址http://www.zope.org/Products/ZopeInterface

             解压zope.interface-3.3.0.tar.gz到/opt/

             进入/opt/zope.interface-3.3.0

             执行:python setup.py install

 

  • zope.interface-3.3.0.tar.gz (101.8 KB)
  • 下载次数: 15
  • Twisted-8.2.0.tar.bz2 (2.3 MB)
  • 下载次数: 32

你可能感兴趣的:(Linux,Python)