我明白了
ModuleNotFoundError:没有名为“ requests”的模块
即使我安装了bs4
和requests
,我在运行代码时也会出现错误
在PyCharm
Community Edition 2019.1.1(Windows 10 x64)上运行
import requests
from bs4 import BeautifulSoup
url = "https://yellowpages.com.tr/"
response = requests.get(url)
print(response)