No module named pytube found

Viewed 25

So I've already seen that I need to do something like pip install pytube and ive already done that but when I run my code, I see a "no module named "Pytube" found" error. When I use pip install pytube in my terminal, it says that the installation was complete, but I still am getting the error. Idk if this is a dumb mistake or something deeper but any help would be appreciated.

1 Answers

probably would be easy if you show the code, but maybe you are writing "Pytube" instead of "pytube", or maybe you are executing your code in the wrong environment.

Related