Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经通过以下命令安装了 pytube
sudo pip install pytube
当我从 python 2.x 导入 pytube 就可以了。但是我在从 python3 导入时遇到 ImportError
尝试使用 pip3 ( sudo pip3 install pytube) 安装包,在某些操作系统中,pip 指的是 python2,pip3 指的是 python3。
sudo pip3 install pytube
尝试安装pytube3:
sudo pip3 install pytube3
之后你应该可以导入 pytube