+ 2
[SOLVED]No module named urllib2 error
i got this error. i dont know if it is going to appear at android but at windows it surely does. how to fix thi error? I added urllib3 (using python 3.6) so now what? https://code.sololearn.com/cOxZQk5tW7Jv/?ref=app
7 Respuestas
+ 2
guys i found the answer. if you have added python to path.. it's a lot easier... just open a cmd and write inside 'pip install [module]' in this case... 'pip install urllib3' since we have now urllib3 not 2...
+ 9
You have to install the modules you need, like bs4, as it's not part of the default, standard Python pack.
+ 4
Yes, most likely. Also, there is a typo in the next imported module -- csv instead of scv.
An important remark -- this won't go in Sololearn, as you can't install new modules yourself here.
+ 3
[ Credits: Kuba Siekierzyński & @Kirk Schafer ]
This should output the list of modules available on Sololearn:
https://code.sololearn.com/c071JeXy6LcW/?ref=app
+ 2
i dont know much about urllib2 but try:
import urllib.request
#instead of urllib2and use
connection=urllib.request.urlopen(url you want to open)
it should work fine
Again you get error on beautiful soup
so try on your machine with beatifulsoup installed and tell me if its working or not
+ 1
i will see it later i have to leave home for now..
+ 1
Kuba Siekierzyński i hope this works... so all i have to do is to install what? bs4?