pydoc 在 Windows 和 Python 2.6.4 下失败
当尝试在 Windows 和 python.org 2.6.4 下使用 pydoc 时,出现以下错误:
C:\>pydoc sys
'import site' failed; use -v for traceback
Traceback (most recent call last):
File "C:\programs\Python26\Lib\pydoc.py", line 55, in ?
import sys, imp, os, re, types, inspect, __builtin__, pkgutil
File "C:\programs\Python26\Lib\os.py", line 758
bs = b""
^
SyntaxError: invalid syntax
这里可能出了什么问题?
When trying to use pydoc under Windows and python.org 2.6.4 I get the following error:
C:\>pydoc sys
'import site' failed; use -v for traceback
Traceback (most recent call last):
File "C:\programs\Python26\Lib\pydoc.py", line 55, in ?
import sys, imp, os, re, types, inspect, __builtin__, pkgutil
File "C:\programs\Python26\Lib\os.py", line 758
bs = b""
^
SyntaxError: invalid syntax
What could be wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
典型的 Windows 问题:我最近安装了一个程序,它自带了 Python 2.4。此安装覆盖了 python 脚本的 Windows 文件处理程序,但没有出现在 PATH 中。因此,从控制台启动的脚本在旧版本的 python 中运行,但调用“python”运行 2.6 版本。
感谢 Nadia 的第一个提示。
Typical windows problem: I had a program installed lately which brought its own Python 2.4. This installation overwrote the Windows file handlers for python scripts, but did not appear on the PATH. So scripts started from the console ran in the old-version python, but calling "python" ran the 2.6 version.
Thx to Nadia for the first hint.
设置你的 PATH 怎么样
how about setting your PATH