|
InstallFromSource
How to get started - installation and first steps.
installation ➽ If you want to update your already installed software, go to the MigrationGuide instead! Installing from sourceIf you have experience with the shell prompt and possibly a bit of Python you might want to install the development version to gain early access to new features. Since that version is constantly used in cron jobs, chances that it is unstable at any point in time are slim. Please monitor the SVN log and the changelog if you run from source. For a working installation, you have to meet these requirements first:
aptitude install python python-dev build-essential subversion git The installation of pyrocore is done from source, see GitHub for more details. Do NOT do this as root or using sudo. If you want to switch over from an old installation based on subversion source (from Google code), then move that old directory away, before installation! Like this: ( cd ~/lib && mv pyroscope pyroscope-$(date +'%Y-%m-%d').bak ) # Run this in your NORMAL user account! mkdir -p ~/bin ~/lib git clone "https://github.com/pyroscope/pyrocore.git" ~/lib/pyroscope # Pass "/usr/bin/python2" or whatever to the script, # if "/usr/bin/python" is not a suitable version ~/lib/pyroscope/update-to-head.sh # Check success pyroadmin --version After that, the CommandLineTools are available in the ~/lib/pyroscope/bin directory, and also added to your user's bin directory. Make sure ~/bin is on your PATH, and if not, close and then reopen your shell. Check again, and if it's still not in there, fix your broken `.bashrc`. To finish installation, read the next section. Completing your setupAfter installation, you must change your rtorrent.rc using the instructions on the UserConfiguration page, else many features of rtcontrol won't work as expected. You should at least create a configuration as described there, using the pyroadmin --create-config command. If you encounter any problems during installation not covered by the documentation, subscribe to the pyroscope-users mailing list to get help from the community, or join the inofficial ##rtorrent channel on irc.freenode.net. | |