今天在pip安装BeautifulSoup4的时候,出现了"Could not find a version that satisfies the requirement beauifulSoup4 (from versions: ) No matching distribution found for beauifulSoup4"
原因:BeautifulSoup4已经集成到了bs4
使用的时候变成: import bs4
soup =bs4.BeautifulSoup(html_cont,'html.parser',from_encoding='utf-8')
原因:BeautifulSoup4已经集成到了bs4
使用的时候变成: import bs4
soup =bs4.BeautifulSoup(html_cont,'html.parser',from_encoding='utf-8')
2020-02-05
直接输出craw faild,可能哪里有问题啊 我用的pycharm编译的。然后用其他人19年十月份成功的代码直接复制粘贴还是craw faild
2020-01-12
python3
说实话,一大堆错误,一大堆未定义变量跟无法导入的变量(urlli3,getcode,Rquest,urlopen,cookielib,build_opener,install_opener,urlopen),更可恨的是,utf-8指定了依然报错,搞毛喔
说实话,一大堆错误,一大堆未定义变量跟无法导入的变量(urlli3,getcode,Rquest,urlopen,cookielib,build_opener,install_opener,urlopen),更可恨的是,utf-8指定了依然报错,搞毛喔
2019-11-12
老师教的是python2,比如print汉字报错呀 python3确把urllib-urllib2合并了 需要urllib.request
response = urllib.request.urlopen(url)
print中文不报错我是直接file--sttings--project interpreter --python2.7-换成了3.5 如果没有快捷路径可以自己在终端中python3 会看到路径
#coding=utf-8这个方法我也使用过依旧报错 不知道神码原因无所谓了python2我可不想用。
response = urllib.request.urlopen(url)
print中文不报错我是直接file--sttings--project interpreter --python2.7-换成了3.5 如果没有快捷路径可以自己在终端中python3 会看到路径
#coding=utf-8这个方法我也使用过依旧报错 不知道神码原因无所谓了python2我可不想用。
2019-10-26