求求前輩們 指點錯誤訊息該如何解決??
(弔詭的是 同樣的程式碼、環境,小弟上午時可以執行,一個午休後就壞掉了)
以下為程式碼畫面
#from pytube import YouTube
import pytube
#ask for the link from user
link = input("Enter the link of YouTube video you want to download: ")
yt = pytube.YouTube(link)
#Showing details
print("Title: ",yt.title)
print("Number of views: ",yt.views)
print("Length of video: ",yt.length)
print("Rating of video: ",yt.rating)
#Getting the highest resolution possible
ys = yt.streams.get_highest_resolution()
#Starting download
print("Downloading...")
ys.download()
print("Download completed!!")
錯誤訊息如下
ImportError: cannot import name 'YouTube' from partially initialized module 'pytube' (most likely due to
a circular import)
問過GOOGLE大神 其中給的解決方法都是版本解決問題
以下為 pytube版本
有試過 pytube3 pytube各種版本 皆無法解決
跪求大神們求助!!~~~