英文:
What's the difference between "pip install bs4" and "pip install BeautifulSoup4"?
问题
"pip install bs4" 和 "pip install BeautifulSoup4" 这两种安装方法有什么区别?
英文:
When I search about the installation of the BeautifulSoup lib, sometimes I see pip install bs4
, and sometimes pip install BeautifulSoup4
.
What's the difference between these 2 methods of installation?
答案1
得分: 1
bs4
在技术上是一个不同的软件包;然而,它是一个虚拟软件包,旨在安装正确的软件包:beautifulsoup4
。
简而言之:您可以使用缩写名称或全名。
英文:
bs4
is technically a different package; however, it is a dummy package designed to install the correct package: beautifulsoup4
.
TLDR: You can use either the short name or long name
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论