can't fix ImportError: No module named request error
问题 hi i'm trying to learn web scraping but this code gives me an error i looked it up why and tried what they said but still doesn't work. i have a windows in my mac too and i tried in there and it worked but in macOS it doesn't work. ok this is the code i'm trying to execute: #!/usr/bin/env python3 import bs4 as bs import urllib.request sauce = urllib.request.urlopen("https://pythonprogramming.net/parsememcparseface/").read() soup = bs.BeautifulSoup(sauce, "lxml") print(soup) this is the error