Risposte:
È possibile installare youtube-dl
tramitelinuxbrew
Installa linuxbrew
:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install)"
PATH="$HOME/.linuxbrew/bin:$PATH"
Aggiungi la linea export PATH="$HOME/.linuxbrew/bin:$PATH"
al tuo ~/.bashrc
:
echo 'export PATH="$HOME/.linuxbrew/bin:$PATH"' >>~/.bashrc
Installa youtube-dl
:
brew install youtube-dl
youtube-dl -U
Basta interpolare dalla documentazione .
Con curl
:
mkdir ~/bin
curl -L https://yt-dl.org/downloads/latest/youtube-dl -o ~/bin/youtube-dl
chmod 0750 ~/bin/youtube-dl
O con wget
:
mkdir ~/bin
wget https://yt-dl.org/downloads/latest/youtube-dl -O ~/bin/youtube-dl
chmod 0750 ~/bin/youtube-dl
Nota i suoi requisiti .
Richiede l'interprete Python (2.6, 2.7 o 3.2+).
Se si tratta di un server di lavoro, sapere in anticipo se è consentito installare e eseguire lo streaming.
wget https://yt-dl.org/downloads/latest/youtube-dl -O /download/path/
chmod u+rx /download/path/youtube-dl
Assicurati di avere accesso al /download/path/
/yt: Read-only..
o /tmp/yt: Read-only...
e puoi pubblicare l'output dimount | grep rw
sudo mount | grep rw
. Hai qualche directory a cui hai accesso in scrittura? Qualsiasi /home
directory.