- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
更新
By adding BeautifulSoup.py to my app source, this error was gone :)
感谢@Ned Deily,这花了一些时间,但富有成效
从这里忽略
我只有一个安装了 BeautifulSoup 的 python 2.5 实例,仍然没有运气!我做错了什么,请帮忙
bash-3.2$ ls -ltr /Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages
total 1096
-rw-r--r-- 1 Harit admin 66866 May 28 2006 BeautifulSoup.py
-rw-r--r-- 1 Harit admin 26413 May 28 2006 BeautifulSoupTests.py
-rw-rwxr-- 1 root admin 119 Sep 18 2006 README
drwxr-xr-x 19 Harit admin 646 Aug 20 23:58 django
-rw-r--r-- 1 Harit admin 1228 Aug 20 23:58 Django-1.3-py2.5.egg-info
-rw-r--r-- 1 Harit admin 333390 Aug 21 00:17 setuptools-0.6c11-py2.5.egg
-rw-r--r-- 1 Harit admin 30 Aug 21 00:17 setuptools.pth
-rw-r--r-- 1 Harit admin 215 Aug 21 00:22 easy-install.pth
-rw-r--r-- 1 Harit admin 33196 Aug 21 00:23 BeautifulSoupTests.pyc
-rw-r--r-- 1 Harit admin 67193 Aug 21 00:23 BeautifulSoup.pyc
-rw-r--r-- 1 Harit admin 970 Aug 21 00:23 BeautifulSoup-3.0.0-py2.5.egg-info
bash-3.2$
从这里忽略
我从macport和系统中删除了所有版本的python并重新安装了python 2.7版本
bash-3.2$ python
Python 2.7.2 (v2.7.2:8527427914a2, Jun 11 2011, 15:22:34)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import django
>>> from BeautifulSoup import BeautifulSoup
>>>
而且所有路径看起来也不错
bash-3.2$ echo $PATH
/Library/Frameworks/Python.framework/Versions/2.7/bin:/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/git/bin:/usr/X11/bin:/opt/local/bin
并且只有一个版本的 python 同时安装了 Django
和 BeautifulSoup
bash-3.2$ cd /Library/Frameworks/Python.framework/Versions/Current/
Headers/ Mac/ Python Resources/ bin/ include/ lib/ share/
bash-3.2$ cd /Library/Frameworks/Python.framework/Versions/Current/lib/python2.7/lib
lib-dynload/ lib-tk/ lib2to3/
bash-3.2$ cd /Library/Frameworks/Python.framework/Versions/Current/lib/python2.7/
Display all 641 possibilities? (y or n)
bash-3.2$ ls /Library/Frameworks/Python.framework/Versions/Current/lib/python2.7/site-packages/
BeautifulSoup-3.2.0-py2.7.egg-info BeautifulSoupTests.pyc easy-install.pth
BeautifulSoup.py Django-1.3-py2.7.egg-info setuptools-0.6c11-py2.7.egg
BeautifulSoup.pyc README setuptools.pth
BeautifulSoupTests.py django
bash-3.2$
但是当我运行 dev_appserver.py project
时,它仍然说它无法导入模块 BeautifulSoup
请帮忙
谢谢
从下方忽略
我在我的 Mac 上安装了 BeautifulSoup,我可以执行以下操作:
bash-3.2$ python
Python 2.6.7 (r267:88850, Jul 27 2011, 11:54:59)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from BeautifulSoup import BeautifulSoup
>>>
但是当我运行我的 djando 应用程序并尝试运行代码时,它没有显示
Error was: No module named BeautifulSoup
看来我使用的一切都是正确的
bash-3.2$ which python
/opt/local/bin/python
lrwxr-xr-x 1 root admin 9 Aug 16 13:55 python -> python2.6
bash-3.2$ cd /Library/Python/2.6/site-packages/
BeautifulSoup-3.0.0-py2.6.egg-info ipython-0.11-py2.6.egg/
BeautifulSoup.py mercurial/
BeautifulSoup.pyc mercurial-1.8.3_20110502-py2.6.egg-info/
BeautifulSoupTests.py nose-1.1.2-py2.6.egg/
BeautifulSoupTests.pyc paramiko-1.7.6-py2.6.egg
Django-1.3-py2.6.egg-info pip-1.0.2-py2.6.egg/
MySQL_python-1.2.3-py2.6-macosx-10.6-universal.egg pycrypto-2.3-py2.6-macosx-10.6-universal.egg
README pysqlite-2.6.3-py2.6.egg-info
django/ pysqlite2/
easy-install.pth setuptools-0.6c11-py2.6.egg
easy_install setuptools.pth
easy_install-2.6 xlrd/
hgext/ xlrd-0.6.1-py2.6.egg-info
我该如何解决这个问题
谢谢
最佳答案
您显然已经安装了第二个更新的 Python 2.6 实例。您的 Django 应用程序可能已安装并从另一个 Python 2.6 实例运行,可能是系统 Python 2.6(/usr/bin/python
或 /usr/bin/python2.6
)。键入 which python
以查看具有 BeautifulSoup 的 Python 的路径(也许是 /usr/local/bin/python
?)。你需要整合东西;使用 Django 在 Python 中安装 BeautifulSoup 或使用 BeautifulSoup 在 Python 中安装 Django。
更新:由于您显然正在运行 Google App Engine dev_server,因此它很可能在 Python 2.5 而不是 Python 2.6 下运行;据我所知,目前只有 2.5 正式支持 GAE。注意 Apple 在 OS X 10.6 中同时提供了 Python 2.6 和 2.5。所以你可能需要在 Python 2.5 中安装 Beautiful Soup。尝试:
easy_install-2.5 -U -v beautifulsoup==3.2
目前,您需要指定版本,因为目前有一个较新的 Beautiful Soup 4 测试版似乎与 Python 2.5 不兼容。
更新:您似乎还安装了不止一个版本的 Python 2.5。您显示的路径适用于第 3 方 Python,而不是 Apple 提供的 Python 2.5。 所以我最后的建议是尝试对 Apple 提供的 Python 2.5 使用 easy_install-2.5:
/usr/bin/easy_install-2.5 -U -v beautifulsoup==3.2
关于python - BeautifulSoup 已安装但在 dev_appserver 运行时无法识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7134460/
HTML 在 div 中包含字符串: 'div class="slide"' 'img src="xttps://site.com/files/r_1000,kljg894/43k5j/35h43jk
我用这个方法 allcity = dom.body.findAll(attrs={'id' : re.compile("\d{1,2}")}) 返回这样的列表: [掳虏驴碌路驴碌脴虏煤脨脜脧垄脥酶 隆
我正在使用 Jupyter 笔记本、Python 3.5 和虚拟环境。 在我的虚拟环境中,我做了: (venv) > pip install BeautifulSoup4 这似乎运行良好 b/c 终端
我打算用 GUI 制作一个字典程序,但我在第一个障碍上就失败了。我刚刚安装了一个模块( PyDictionary ),但是当我运行以下代码时出现错误。 from PyDictionary import
我正在将一些解析器从 BeautifulSoup3 迁移到 BeautifulSoup4,我认为考虑到 lxml 非常快并且它是我在 BS4 中使用的解析器,分析它会变得多快是个好主意,这里是分析结果
这个问题在这里已经有了答案: Getting Python error "from: can't read /var/mail/Bio" (6 个答案) 关闭 11 个月前。 From Beauti
目前我无法输入这个,因为根据 top,我的处理器是 100%,我的内存是 85.7%,都被 python 占用了。 为什么?因为我让它通过一个 250 兆的文件来删除标记。 250兆,就是这样!我一直
我写了下面的代码: from bs4 import BeautifulSoup import sys # where is the sys module in the source code fold
通常,当我尝试使用BeautifulSoup解析网页时,BeautifulSoup函数会得到NONE结果,否则就会引发AttributeError。。以下是一些独立的(即,由于数据是硬编码的,不需要访
通常,当我尝试使用BeautifulSoup解析网页时,BeautifulSoup函数会得到NONE结果,否则就会引发AttributeError。。以下是一些独立的(即,由于数据是硬编码的,不需要访
我正在为一个项目使用 BeautifulSoup。这是我的 HTML 结构 John Sam Bailey Jack
这段代码正确地从我的博客中提取了马拉地语文本。我很欣赏使用漂亮的汤和正则表达式是多么容易。 from bs4 import BeautifulSoup import requests, re url
我想获取 HTML 中隐藏输入字段的值。 我想用 Python 编写一个正则表达式,它将返回 fooId 的值,前提是我知道 HTML 中的行遵循以下格式 有人可以提供一个 Python 示例来解
我正在尝试获取特定月份的所有链接、标题和日期,例如网站上的三月,我正在使用 BeautifulSoup 这样做: from bs4 import BeautifulSoup import reques
我正试图通过此链接收集有关 2020 年世界上收入最高的运动员收入的信息 https://www.forbes.com/profile/roger-federer/?list=athletes这是第一
我正在尝试从带有美丽汤的网页中捕获所有相关链接。我需要的所有链接都有 class="btn btn-gray"还有文字 More Info<> 仅提取这些链接的最佳方法是什么? 最佳答案 这个怎么样?
我正在尝试抓取一个具有下拉菜单的站点,用户可以在其中选择要显示的数据的年份。但是,我似乎被困在我的实现中。 这是网站网址:https://www.pgatour.com/tournaments/mas
我正在使用 BeautifulSoup 和 mechanise 从网页中查找一些内容。问题是有时找不到我正在寻找的字符串。我不知道有什么问题 对于许多网页,它可以正常工作数月,但突然停止工作。然后我必
( 更新代码 就在下面) 我有一个类:UrlData , 生成一个 url 列表: for url in urls: rawMechSiteInfo = mech.open(url) #me
这是我到目前为止所做的事情: import requests from bs4 import BeautifulSoup URL = "https://www.google.com/search?q=
我是一名优秀的程序员,十分优秀!