Changes between Version 22 and Version 23 of Installing/Source


Ignore:
Timestamp:
06/26/2012 04:49:15 PM (12 years ago)
Author:
Cas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Installing/Source

    v22 v23  
    3939 * '''[http://pypi.python.org/pypi/Twisted Twisted 11]''' ([http://pypi.python.org/packages/2.6/T/Twisted/Twisted-11.0.0.winxp32-py2.6.msi#md5=b3f1f194c9256c5e9ce362d0cf2a6036 Twisted-11.0.0.winxp32-py2.6.msi]) 
    4040 
    41 The following packages do not have Windows installers but are straightforward to install.  
     41The following packages do not have Windows installers, instead install them using python ''easy_install'', see command below:  
    4242 
    4343 * '''[http://www.freedesktop.org/wiki/Software/pyxdg PyXDG]''' 
     
    4646 * '''[http://pypi.python.org/pypi/chardet Chardet]''' 
    4747 
    48  After ''Python'' and ''Setuptools'' are installed, open a console and run:  
     48After ''Python'' and ''Setuptools'' are installed, open a console and run:  
    4949{{{ 
    5050 C:\Python26\Scripts\easy_install.exe zope.interface chardet mako pyxdg 
    5151}}} 
     52 
     53Finally add Python to the Path system variable as detailed on [http://superuser.com/a/143121/72950 superuser] 
    5254 
    5355---- 
     
    5557= Building and Installing = 
    5658The first step you should do is make sure you have a clean build environment. 
     59 
    5760{{{ 
    5861python setup.py clean -a 
     
    6871sudo python setup.py install 
    6972}}} 
     73  ''Note: For Windows users omit `sudo` command'' 
    7074 
    7175For Linux Desktop systems an extra step is required due to an installer [http://dev.deluge-torrent.org/ticket/1389 bug] not copying data files, such as `deluge.desktop`: 
     
    7478sudo python setup.py install_data 
    7579}}} 
     80 
     81 
    7682 
    7783== Developer Install ==