Install Transmission and Flexget

Hi, I want to install transmission and flexget together in my Raspberry Pi to automate the downloading of my favorite series.

I had it done in RASPBMC before, but now I am unable to even install properly Transmission to download the chapters on an external hard drive.

Could anyone help me out ?

Thank you very much .

removed

please use apt-get as nirvana80 said

or you could just install it with apt-get:

sudo apt-get install transmission-cli transmission-common transmission-daemon

@nirvana80 which version is in the repo? I builded the last one: 2.84

UPDATE

it’s the latest

osmc@osmc:~$ sudo apt-cache policy transmission-cli transmission-common transmission-daemon
transmission-cli:
Instalado: (nenhum)
Candidato: 2.84-0.2
Tabela de versão:
2.84-0.2 0
500 Index of /debian jessie/main armhf Packages
transmission-common:
Instalado: (nenhum)
Candidato: 2.84-0.2
Tabela de versão:
2.84-0.2 0
500 Index of /debian jessie/main armhf Packages
transmission-daemon:
Instalado: (nenhum)
Candidato: 2.84-0.2
Tabela de versão:
2.84-0.2 0
500 Index of /debian jessie/main armhf Packages

Hello! thank you for your response.

I have installed with: sudo apt-get install transmission-cli transmission-common transmission-daemon

And I have this error when I get to the page: http://192.168.1.40:9091/transmission/web/#upload

Error:

403: Forbidden

Unauthorized IP Address.

Either disable the IP address whitelist or add your address to it.

If you’re editing settings.json, see the ‘rpc-whitelist’ and ‘rpc-whitelist-enabled’ entries.

If you’re still using ACLs, use a whitelist instead. See the transmission-daemon manpage for details.

stop transmission first with the following command
sudo /etc/init.d/transmission-daemon stop

then you need to edit the config file before you can use it.

sudo vi /etc/transmission-daemon/settings.json

and edit your transmission config file
change
“rpc-whitelist-enabled”: true,
to
“rpc-whitelist-enabled”: false,

you can do it without opening the file in an editor with one command:
sudo sed -i ‘s/“rpc-whitelist-enabled”: true/“rpc-whitelist-enabled”: false/g’ /etc/transmission-daemon/settings.json

then start transmission again:
sudo /etc/init.d/transmission-daemon start

or you can just specify your local subnet in the “rpc-whitelist” config option.