Changes between Version 21 and Version 22 of Installing/Source


Ignore:
Timestamp:
05/04/2012 06:03:01 PM (12 years ago)
Author:
Cas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Installing/Source

    v21 v22  
    6969}}} 
    7070 
    71 If you are using '''Ubuntu''' you will need to use this command instead: 
     71For Linux Desktop systems an extra step is required due to an installer [http://dev.deluge-torrent.org/ticket/1389 bug] not copying data files, such as `deluge.desktop`: 
     72 
    7273{{{ 
    73 sudo python setup.py install --install-layout=deb 
     74sudo python setup.py install_data 
    7475}}} 
    7576 
    7677== Developer Install == 
    7778 
    78 This will create a Deluge install in ~/delugeDev but will link back to the source code directory so changes you make will be reflected immediately without having to install again. 
     79Installing Deluge with develop mode creates binaries that link back to the source code so changes will be reflected immediately thus no need to repeatedly install. 
     80{{{ 
     81python setup.py develop 
     82}}} 
     83 
     84If you wish to use a specific development directory, the following will create a Deluge install in ~/delugeDev: 
    7985{{{ 
    8086export PYTHONPATH=${HOME}/delugeDev 
    8187python setup.py develop --install-dir ~/delugeDev 
    8288}}} 
     89 
     90Another alternative for a separate Deluge development environment is to use python [http://pypi.python.org/pypi/virtualenv virtualenv] 
    8391 
    8492= Removing From System =