我在http://ricardianambivalence.com/2011/08/14/beautifulsoup-in-python-with-windows-7/找到了这篇文章
(我使用python 2.6并下载了beautifulsoup4-4.1.3)
运行“setup.py”后我找不到“BeautifulSoup.pyc”
有什么建议吗?
我在http://ricardianambivalence.com/2011/08/14/beautifulsoup-in-python-with-windows-7/找到了这篇文章
(我使用python 2.6并下载了beautifulsoup4-4.1.3)
运行“setup.py”后我找不到“BeautifulSoup.pyc”
有什么建议吗?
要检查您的安装是否成功,请输入 Python shell(或任何 Python 脚本):
from bs4 import BeautifulSoup
要安装纯 python 包,例如beautifulsoup4
,运行:
C:\> pip install beautifulsoup4
要安装pip
、下载get-pip.py
并运行:
C:\> python get-pip.py
我知道这绝不是一个好方法,但我总是做的是复制bs4
path的文件夹C:\Python27\Lib\site-packages
。总是有效:)
打开 cmd。
转到你解压包的目录,然后写这个:
c:\python33\python.exe setup.py install
将 python33 更改为安装 python 的目录。