You can change your current Deluge version, which is the latest version by default, to the one you want to get running. You can check the versions available via SSH with the following command:

ls -ld /opt/deluge*

To change the version you need to use the command below and change Deluge version in the command to suit your needs:

mkdir -p ~/.local && cp -pr /opt/deluge2.2.0/lib ~/.local/

For example to change Deluge to 2.0.5:

cp -pr /opt/deluge2.0.5/lib ~/.local/

To change to V2.1.1:

cp -pr /opt/deluge2.1.1/lib ~/.local/

To verify Deluge version installed you can use the command below:

deluge -v

To remove it and revert it back to default one you need to delete it with the command below:

rm -r ~/.local/lib/python3.10/site-packages/deluge*
Was this answer helpful? 0 Users Found This Useful (0 Votes)