我第一次尝试安装 Python。我从 Python 网站下载了以下安装程序: Python2.7.1 Windows Installer (Windows 二进制文件——不包括源代码)。然后我运行了安装程序,选择了“所有用户”,一切正常。我将 Python 安装到默认位置:
C:\Python27
接下来,为了测试 Python 是否正确安装,我导航到 Python 目录,并在 Windows CMD 提示符下执行 python
。它返回以下错误:
Import Error: 没有命名为 site 的模块
当我执行 python -v
时,我得到以下结果:
# 安装 zipimport 挂钩
输入 zipimport # 内建
# 安装的 zipimport 挂钩
# Import Error: 没有名为 site 的模块
清除 天生的
# Clear sys.path
# clear sys.argv
# Clear sys.ps1
# Clear sys.ps2
# clear sys.exitfunc
# clear sys.exc _ type
# clear sys.exc _ value
# clear sys.exc _ traceback
# clear sys.last _ type
# clear sys.last _ value
# clear sys.last _ traceback
# clear sys.path _ hooks
# clear sys.path _ import _ cache
# clear sys.meta _ path
清除系统,旗帜
# clear sys.float _ info
# 恢复 sys.stdin
# 恢复 sys.stdout
# 恢复 sys.stderr
# 清理 < strong > main
# 清洁[1] zipimport
清理信号
# 清理[1]例外
清理[1] _ 警告
# 清理系统
# 清理 < strong > builtin
# clean up int: 6 unfree int
# 清理漂浮
当我做 dir C:\Python27\Lib\site.py*
的时候,我会得到以下结果:
Directory of C:\Python27\Lib 13/11/2010 20:08 20,389 site.py 1 File(s) 20,389 bytes 0 Dir(s) 694,910,976 bytes free
有什么想法吗?