Changes between Version 40 and Version 41 of Installing/Source


Ignore:
Timestamp:
10/01/2014 11:20:48 AM (9 years ago)
Author:
Cas
Comment:

small updates

Legend:

Unmodified
Added
Removed
Modified
  • Installing/Source

    v40 v41  
    2626== Windows Dependencies == 
    2727 
    28 Ensure all Python dependencies are '''py2.7''' and '''win32''' (32-bit) versions. 
     28Python dependencies should be '''py2.7''' and '''win32''' (32-bit) and the following steps are easier with Python added to the Windows Path: [http://superuser.com/a/143121/72950 Super User steps]'' 
    2929 
    3030 * '''[http://www.python.org/download/ Python 2.7]''' 
     
    3535 * '''[http://pygame.org/download.shtml PyGame]''' 
    3636 
    37 Once ''Python'' and ''pip'' are installed, use ''pip'' to install the following, using the console:  
     37After ''Python'' and ''pip'' are installed, use ''pip'' to install the following, using the console:  
    3838 
    3939 * '''[http://pypi.python.org/pypi/Twisted Twisted]''', '''[https://pypi.python.org/pypi/cryptography cryptography] ''', '''[http://pypi.python.org/pypi/pyOpenSSL pyOpenSSL] ''', '''[https://pypi.python.org/pypi/service_identity service_identity]''', '''[http://www.freedesktop.org/wiki/Software/pyxdg PyXDG]''', '''[http://pypi.python.org/pypi/Mako Mako]''', '''[http://pypi.python.org/pypi/chardet Chardet]''', '''[http://https://pypi.python.org/pypi/slimit SlimIt]''' 
     
    4343}}} 
    4444 
    45 ''Note: Building Deluge is easier with Python added to the Windows Path: [http://superuser.com/a/143121/72950 Super User steps]'' 
    4645---- 
    4746 
    4847= Building and Installing = 
    49 The first step you should do is make sure you have a clean build environment. 
    50 {{{ 
    51 python setup.py clean -a 
    52 }}} 
    53  
    54 Now the build: 
     48Extract the source tarball and in the extracted folder run the build command: 
    5549{{{ 
    5650python setup.py build 
    5751}}} 
    5852 
    59 And finally, install the package to your system: 
     53Install the package to your system: 
    6054{{{ 
    6155sudo python setup.py install 
     
    6862{{{ 
    6963sudo python setup.py install_data 
     64}}} 
     65 
     66If you have run the build before, ensure you have a clean build environment: 
     67{{{ 
     68python setup.py clean -a 
    7069}}} 
    7170