0

I wanted to download Youtube videos with python and i opened Pycharm and wrote the code. It gave me an error, saying "ModuleNotFoundError: No module named 'Pytube'". I need to download Pytube, from Command Prompt, so i wrote "pip install Pytube" and it gave me this error: "'pip' is not recognized as an internal or external command, operable program or batch file." How can I solve this?

  • pip is not in your PATH, re download python but select add pip to path – Ironkey Jan 14 '20 at 15:28
  • also im sure there are many other questions that answer this, don't run in here asking without doing your research – Ironkey Jan 14 '20 at 15:29
  • 4
    Does this answer your question? ['pip' is not recognized as an internal or external command](https://stackoverflow.com/questions/23708898/pip-is-not-recognized-as-an-internal-or-external-command) – Yann Jan 14 '20 at 15:34
  • try doing `pip install pytube3` – Martin Feb 08 '20 at 21:28

1 Answers1

0

if python is registered in your PATH you can run

python -m pip install Pytube