Python安装故障排除

时间:2015-02-20 16:28:46

标签: python-3.x failed-installation

我正在努力安装Python。我正在运行Windows 8.1。 Python曾经在我的电脑上运行正常,但我最近刷新了Windows,现在必须重新安装它。我在尝试安装之前删除了Python文件夹,并确保没有安装旧版本。当我启动IDLE时,大约有9个IDLE窗口和最后一个有一个脚本的IDLE窗口一起打开:

try:
    import idlelib.PyShell
except ImportError:
    # IDLE is not installed, but maybe PyShell is on sys.path:
    try:
        from . import PyShell
    except ImportError:
        raise
    else:
        import os
        idledir = os.path.dirname(os.path.abspath(PyShell.__file__))
        if idledir != os.getcwd():
            # We're not in the IDLE directory, help the subprocess find run.py
            pypath = os.environ.get('PYTHONPATH', '')
            if pypath:
                os.environ['PYTHONPATH'] = pypath + ':' + idledir
            else:
                os.environ['PYTHONPATH'] = idledir
        PyShell.main()
else:
    idlelib.PyShell.main()

任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:0)

我会完全卸载程序并重新安装。确保您还拥有所有Windows更新。听起来好像是一个糟糕/损坏的安装。

答案 1 :(得分:0)

你试过python 2.7.9吗?仍然听起来像是腐败的东西。你是否又在另一台机器上下载了python 3.x并将其带过来了?