Python:没有名为' BeautifulSoup'

时间:2018-05-22 15:16:25

标签: python beautifulsoup pydev

这可能是一个超级新手问题,但我正在尝试将BeautifulSoup导入我的python项目:

import urllib.request
from bs4 import BeautifulSoup

但是我收到了这个错误:

import BeautifulSoup
ModuleNotFoundError: No module named 'BeautifulSoup'

从我正在阅读的内容我必须安装它为它创建一个子文件夹?如果是这样的话,为什么我的其他导入如import urllib.request在没有安装的情况下工作,而且这个没有?

1 个答案:

答案 0 :(得分:1)

Python附带一组默认模块 - 您可以看到looking at the list of default modules on this page安装了Python urllib

You should follow these instructions to download and use pip,Python包管理器和安装程序,用于获取和安装BeautifulSoup模块。