youtube-dl doesn't run in Ubuntu 20.04.1-LTS
See original GitHub issueI download with
sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl
Then I run
sudo youtube-dl -U
Says:
/usr/bin/env: «python»: No existe el archivo o el directorio (Directory or file does not exist)
which youtube-dl
/usr/local/bin/youtube-dl
python -V
Python 3.8.5
bash --version
GNU bash, versión 5.0.17(1)-release (x86_64-pc-linux-gnu)
Copyright © 2019 Free Software Foundation, Inc.
Licencia GPLv3+: GPL de GNU versión 3 o posterior http://gnu.org/licenses/gpl.html
Esto es software libre, es libre para modificar y redistribuirlo.
No hay NINGUNA GARANTÍA, a la extensión permitida por la ley.
uname -a
Linux Aspire-A315-53 5.8.0-36-generic #40~20.04.1-Ubuntu SMP Wed Jan 6 10:15:55 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
Issue Analytics
- State:
- Created 3 years ago
- Comments:6
Top GitHub Comments
Presumably your Python 3.8 is a stock installation with the DE itself, and since
python
doesn’t show up you should just be able to fix the problem by installingpython-is-python3
:Great 😄