Changes between Initial Version and Version 1 of UserGuide


Ignore:
Timestamp:
10/10/2008 11:57:46 PM (16 years ago)
Author:
mindzai
Comment:

Created initial revision of the page

Legend:

Unmodified
Added
Removed
Modified
  • UserGuide

    v1 v1  
     1= Installing Deluge = 
     2 
     3There are various options for installing Deluge. You can either install the appropriate packaged release or executable for your operating system, or you can build Deluge from source code. Generally, if a package is available for your system it is best to use it rather than build from source. 
     4 
     5== Installing on Linux using a package == 
     6 
     7To install Deluge on Linux, head to the downloads page and select the distribution you use. Some distributions (such as Ubuntu) may have packages available for multiple versions. For example, if you select Ubuntu you may see packages for 7.10 Gutsy Gibbon, 8.04 Hardy Heron and 8.10 Intrepid Ibex. Be sure to select the package which corresponds to the version you have installed. 
     8 
     9If you are using a 32 bit computer and operating system, you will need to select the package for i386 systems. 
     10 
     11If you are using a 64 bit computer and operating system, select the package for x86_64 systems. 
     12 
     13Once you have found the correct package for your system, download it to a convenient location on your computer. On most systems you can install the package simply by double-clicking on the downloaded file to open it with your distribution's package management software and following the on-screen instructions. 
     14 
     15== Installing on Windows == 
     16 
     17To install Deluge on Windows, head to the downloads page and select Windows from the list of download options. You will be presented with the option to download Deluge for 32-bit or 64-bit versions of Windows.  
     18 
     19If you are unsure which version you need, you can find out by right-clicking the My Computer icon and selecting Properties. Under the System section of the General tab, you will see your Windows version. If this includes x64 Edition you will need to download the 64-bit version of Deluge, otherwise download the 32-bit version. If you are still unsure, download the 32-bit version. 
     20 
     21== Installing on Mac OSX == 
     22 
     23To install Deluge on OSX, you will need to have [http://www.macports.org/ Mac Ports] installed. Assuming you have already installed Mac Ports, you can install Deluge by opening a Terminal (Applications > Utilities > Terminal) and running the following commands. Enter the lines one at a time and press [Enter] after each. 
     24 
     25{{{ 
     26sudo port selfupdate 
     27sudo port install python_select 
     28sudo python_select python25 
     29sudo port install deluge 
     30}}} 
     31 
     32== Installing From Source == 
     33 
     34To install from source, head to the downloads page and select the source code from the list of download options. Download the source to a convenient location on your hard drive, for example your home directory. 
     35 
     36Open up a terminal, and if necessary change to the directory in which you downloaded the source code. 
     37 
     38{{{ 
     39cd ~/path/to/downloaded/file 
     40}}} 
     41 
     42If you downloaded the tar.gz archive, extract it using the following command. 
     43 
     44{{{ 
     45tar xvzf deluge-1.0.1.tar.gz 
     46}}} 
     47 
     48or, if you downloaded the tar.bz2 archive 
     49 
     50{{{ 
     51tar xvjf deluge-1.0.1.tar.bz2 
     52}}} 
     53 
     54Next, ensure you have the necessary build dependencies installed. On Debian based distributions such as Ubuntu, you can run the following command from the terminal: 
     55 
     56{{{ 
     57sudo apt-get install g++ make python-all-dev python-all python-dbus \ 
     58    python-gtk2 python-notify librsvg2-common python-xdg python-support \ 
     59    subversion libboost-dev libboost-python-dev libboost-iostreams-dev \ 
     60    libboost-thread-dev libboost-date-time-dev libboost-filesystem-dev \ 
     61    libboost-serialization-dev libssl-dev zlib1g-dev python-setuptools 
     62}}} 
     63 
     64The names of the packages may vary depending on your distribution. 
     65 
     66Once the necessary build dependencies are installed, you can build and install Deluge by running the following commands 
     67 
     68{{{ 
     69python setup.py build 
     70sudo python setup.py install 
     71}}}