Python Markdown 64位安装问题
我正在使用 Django for python。 我尝试从这里安装适用于 python 的 Markdown 2.0.3 http://pypi.python.org/pypi /Markdown 但它只有 Windows 32 位版本,我有 Windows 7 64 位。
尝试安装 32 位版本时出现错误:
在注册表中找不到Python安装
我有 python 2.7,可以与 Django 完美配合。
您有什么建议吗?
I'm working with Django for python.
I've tried to install Markdown 2.0.3 for python from here http://pypi.python.org/pypi/Markdown but it only has a windows 32 bit version and I have windows 7 64 bit.
When trying to install the 32 bit version an error appears:
No python installation found in the registry
I do have python 2.7 that works perfectly with Django.
Do you have any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该模块没有 64 位或 32 位版本。 Markdown 是一个纯 python 模块,你可以这样安装它。如果
.exe
由于某种原因无法运行,您可以随时下载.zip
版本,解压并运行python setup.py install 在该目录中(前提是 python 在您的
PATH
中)There is no 64 or 32 bit version of this module. Markdown is a pure-python module and you can install it that way. If the
.exe
doesn't work for you for some reason, you can always download the.zip
version, unpack and runpython setup.py install
in that directory (provided that python is in yourPATH
)