Changes between Version 40 and Version 41 of Installing/Source
- Timestamp:
- 10/01/2014 11:20:48 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Installing/Source
v40 v41 26 26 == Windows Dependencies == 27 27 28 Ensure all Python dependencies are '''py2.7''' and '''win32''' (32-bit) versions. 28 Python 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]'' 29 29 30 30 * '''[http://www.python.org/download/ Python 2.7]''' … … 35 35 * '''[http://pygame.org/download.shtml PyGame]''' 36 36 37 Once''Python'' and ''pip'' are installed, use ''pip'' to install the following, using the console:37 After ''Python'' and ''pip'' are installed, use ''pip'' to install the following, using the console: 38 38 39 39 * '''[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]''' … … 43 43 }}} 44 44 45 ''Note: Building Deluge is easier with Python added to the Windows Path: [http://superuser.com/a/143121/72950 Super User steps]''46 45 ---- 47 46 48 47 = 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: 48 Extract the source tarball and in the extracted folder run the build command: 55 49 {{{ 56 50 python setup.py build 57 51 }}} 58 52 59 And finally, install the package to your system:53 Install the package to your system: 60 54 {{{ 61 55 sudo python setup.py install … … 68 62 {{{ 69 63 sudo python setup.py install_data 64 }}} 65 66 If you have run the build before, ensure you have a clean build environment: 67 {{{ 68 python setup.py clean -a 70 69 }}} 71 70