我正在尝试为plone的最新版本(4.2.x)安装funnelweb插件。我已经在3台不同的计算机上尝试过了,并且在所有的计算机上都得到了同样的错误。错误粘贴在下面:
magiq@magiq-VirtualBox:~/Plone/zinstance$ bin/buildout
Getting distribution for 'transmogrify.webcrawler>=1.1'.
error: README.rst: No such file or directory
An error occured when trying to install transmogrify.webcrawler 1.2. Look above this message for any errors that were output by easy_install.
While:
Installing.
Getting section unifiedinstaller.
Initializing part unifiedinstaller.
Getting section funnelweb.
Initializing section funnelweb.
Installing recipe funnelweb.
Getting distribution for 'transmogrify.webcrawler>=1.1'.
Error: Couldn't install: transmogrify.webcrawler 1.2
*************** PICKED VERSIONS ****************
[versions]
BeautifulSoup = 3.2.1
charm = 1.0b4
funnelweb = 1.1.1
mr.migrator = 1.0.1
transmogrify.htmlcontentextractor = 1.0
transmogrify.ploneremote = 1.3
transmogrify.siteanalyser = 1.3
xlrd = 0.8.0
*************** /PICKED VERSIONS ***************有没有人解决了这个问题?提前感谢
发布于 2013-01-09 18:47:00
作者犯了一个打包错误,没有在发行版中包含README.rst文件。
更新:Version 1.2.1发布修复了这个问题。请尝试重新安装。
作为将来的参考,当你遇到这样的问题时,你可以在你的[versions]部分中将transmogrify.webcrawler固定到一个特定的版本(比如1.1):
[versions]
transmogrify.webcrawler = 1.1或者使用mr.developer获取开发版本:
[buildout]
# assumption: you already have mr.developer in your buildout
auto-checkout += transmogrify.webcrawler
[sources]
transmogrify.webcrawler = git git://github.com/collective/transmogrify.webcrawler.git我提交了一个bug report让作者知道;希望很快就会有一个修复的版本。
https://stackoverflow.com/questions/14232647
复制相似问题