【发布时间】:2021-10-11 06:58:39
【问题描述】:
我从 youtube 获取代码:https://www.youtube.com/watch?v=0fNyKKeiv_0
代码开始了:
from selenium import webdriver
import time
import datetime
import insta_cred as cred
def get_comments():
rettxt = []
try:
scroll = True
count = 0
while scroll and count < 15 : #scrolling
当我运行此代码“import insta_cred as cred”时,我的控制台出现错误:
ModuleNotFoundError: No module named 'insta_cred'
我该如何解决?
【问题讨论】:
标签: python selenium comments instagram spyder