Python 2.6.7 未在 Windows 中初始化

发布于 2024-12-11 21:22:50 字数 693 浏览 0 评论 0原文

我正在尝试让 Python 与 Blender 一起运行。我有 64 位 Vista SP2。 2.6.7 Python。当我启动 python 时,命令提示符告诉我这个

'imprt site' failed; use -v for traceback
Traceback <most recent call last>:
File "c:\Python26\Scripts\pypm-script.py", line 5, in <module>
Import Error: No module named pkg_resources

所以,我打开了 pypm-script.py

#!python2.6.exe
# EASY-INSTALL-ENTRY-SCRIPT: 'pypm==1.3.4','console_scripts','pypm'
__requires__ = 'pypm==1.3.4'
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
sys.exit(
load_entry_point('pypm==1.3.4', 'console_scripts', 'pypm')()
)

这非常令人沮丧,因为不知道如何阅读代码或如何使用 Python!我希望这个问题很容易解决。

I am trying to get Python to run to use with Blender. I have 64 bit Vista SP2. 2.6.7 Python. When I start python the command prompt tells me this

'imprt site' failed; use -v for traceback
Traceback <most recent call last>:
File "c:\Python26\Scripts\pypm-script.py", line 5, in <module>
Import Error: No module named pkg_resources

So, I opened pypm-script.py

#!python2.6.exe
# EASY-INSTALL-ENTRY-SCRIPT: 'pypm==1.3.4','console_scripts','pypm'
__requires__ = 'pypm==1.3.4'
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
sys.exit(
load_entry_point('pypm==1.3.4', 'console_scripts', 'pypm')()
)

This is very frustrating, because have no idea how to read code or how to use Python! I hope this is easily fixable.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜妞爱困 2024-12-18 21:22:50

文件pypm-script.py(和pkg_resources)来自ActivePython。您可能必须在 ActivePython 之上安装不同的 Python。我可以想到两种方法来解决这个问题:

  1. 卸载Python,删除C:\Python26并安装ActivePython 2.6(或 2.7),或
  2. 删除 C:\Python26\Scripts\pypm* 和C:\Python26\Lib\site-packages\pypm*

The file pypm-script.py (and pkg_resources) come from ActivePython. You probably must have installed a different Python on top of ActivePython. I can think of two ways to fix this problem:

  1. Uninstall Python, remove C:\Python26 and install ActivePython 2.6 (or 2.7), or
  2. Remove C:\Python26\Scripts\pypm* and C:\Python26\Lib\site-packages\pypm*
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文