在 WIndows Xp 上使用 easy_install cheetah 时出现问题
我已经从以下 URL 安装了 PyQT:
http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-Py2.6-gpl-4.7.7-1.exe
我安装了Python 2.6。
我的操作系统是Windows XP SP3。
我将其输入 cmd.exe:
easy_install cheetah
这是输出:
C:\Documents and Settings\All Users>easy_install cheetah
Searching for cheetah
Best match: cheetah 2.4.3
Processing cheetah-2.4.3-py2.6.egg
cheetah 2.4.3 is already the active version in easy-install.pth
Installing cheetah-script.py script to C:\Python26\Scripts
Installing cheetah.exe script to C:\Python26\Scripts
Installing cheetah.exe.manifest script to C:\Python26\Scripts
Installing cheetah-compile-script.py script to C:\Python26\Scripts
Installing cheetah-compile.exe script to C:\Python26\Scripts
Installing cheetah-compile.exe.manifest script to C:\Python26\Scripts
Using c:\python26\lib\site-packages\cheetah-2.4.3-py2.6.egg
Processing dependencies for cheetah
Searching for Markdown>=2.0.1
Reading http://pypi.python.org/simple/Markdown/
Reading http://www.freewisdom.org/projects/python-markdown/
Reading http://www.freewisdom.org/projects/python-markdown
Reading https://sourceforge.net/project/showfiles.php?group_id=153041
Best match: Markdown 2.0.3
Downloading http://sourceforge.net/projects/python-markdown/files/markdown/2.0.3
/Markdown-2.0.3.win32.exe/download
Processing download
error: Couldn't find a setup script in c:\docume~1\admini~1\locals~1\temp\easy_i
nstall-awtoum\download
C:\Documents and Settings\All Users>
有帮助吗?
I have installed PyQT from this URL:
http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-Py2.6-gpl-4.7.7-1.exe
I have Python 2.6 installed.
My OS is Windows XP SP3.
I entered this into cmd.exe:
easy_install cheetah
This is the output:
C:\Documents and Settings\All Users>easy_install cheetah
Searching for cheetah
Best match: cheetah 2.4.3
Processing cheetah-2.4.3-py2.6.egg
cheetah 2.4.3 is already the active version in easy-install.pth
Installing cheetah-script.py script to C:\Python26\Scripts
Installing cheetah.exe script to C:\Python26\Scripts
Installing cheetah.exe.manifest script to C:\Python26\Scripts
Installing cheetah-compile-script.py script to C:\Python26\Scripts
Installing cheetah-compile.exe script to C:\Python26\Scripts
Installing cheetah-compile.exe.manifest script to C:\Python26\Scripts
Using c:\python26\lib\site-packages\cheetah-2.4.3-py2.6.egg
Processing dependencies for cheetah
Searching for Markdown>=2.0.1
Reading http://pypi.python.org/simple/Markdown/
Reading http://www.freewisdom.org/projects/python-markdown/
Reading http://www.freewisdom.org/projects/python-markdown
Reading https://sourceforge.net/project/showfiles.php?group_id=153041
Best match: Markdown 2.0.3
Downloading http://sourceforge.net/projects/python-markdown/files/markdown/2.0.3
/Markdown-2.0.3.win32.exe/download
Processing download
error: Couldn't find a setup script in c:\docume~1\admini~1\locals~1\temp\easy_i
nstall-awtoum\download
C:\Documents and Settings\All Users>
Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在“awtoum”上遇到的错误可能是针对Autumn-ORM< /a>,您可以使用命令
easy_installAutumn
安装它。一旦满足了先决条件,您就可以再次尝试安装 Cheetah,如果已经安装了 Autumn-ORM,它应该会跳过错误。或者,您可能会更幸运地通过 pip 安装(也许具有讽刺意味的是,您可以使用命令
easy_install pip
进行安装)。使用 pip,运行pip install cheetah
将尝试获取最新版本和所有先决条件/依赖项)。The error you're getting on 'awtoum' is probably for the Autumn-ORM, which you can probably install with the command
easy_install autumn
. Once you have that prerequisite working, you can give the Cheetah installation another try, and it should skip right on past the error if the Autumn-ORM is already installed.Alternately, you might have better luck installing via pip (which, perhaps ironically, you can install with the command
easy_install pip
). With pip, runningpip install cheetah
will try to get the latest version and all prerequisites/dependencies).