| | 51 | * Ubuntu: https://edge.launchpad.net/~zachtib/+archive |
| | 52 | * Other: See Svn |
| | 53 | |
| | 54 | == How do I install 0.6 SVN? == |
| | 55 | |
| | 56 | First you need to install the necessary dependencies. In Ubuntu and Debian, do this: |
| | 57 | |
| | 58 | $ sudo apt-get install g++ make python-all-dev python-all python-dbus python-gtk2 python-notify librsvg2-common python-xdg python-support subversion libboost-dev libboostpython-dev libboost-iostreams-dev libboost-thread-dev libboost-date-time-dev libboost-filesystem-dev libboost-serialization-dev libssl-dev zlib1g-dev python-json |
| | 59 | |
| | 60 | Next you need to get the latest revision from SVN and build/install it: |
| | 61 | {{{ |
| | 62 | $ svn co http://svn.deluge-torrent.org/branches/deluge-0.6 deluge |
| | 63 | $ cd deluge |
| | 64 | $ python setup.py build |
| | 65 | $ sudo python setup.py install |
| | 66 | }}} |
| | 67 | If you have already checked the source out and simply want to update your current tree, then do the following in the deluge directory: |
| | 68 | {{{ |
| | 69 | $ svn up |
| | 70 | $ make clean |
| | 71 | }}} |
| | 72 | |
| | 73 | |