Changes between Version 20 and Version 21 of Faq


Ignore:
Timestamp:
07/02/2008 08:28:38 PM (16 years ago)
Author:
mvoncken
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Faq

    v20 v21  
    4747 
    4848 
     49== How do I install 0.6? == 
    4950 
     51* Ubuntu: https://edge.launchpad.net/~zachtib/+archive 
     52* Other: See Svn 
     53 
     54== How do I install 0.6 SVN? == 
     55 
     56First 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 
     60Next 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}}} 
     67If 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