在 Windows(Server 2008 R2)上安装 Trac / Python / SetupTools

在 Windows(Server 2008 R2)上安装 Trac / Python / SetupTools

我正在尝试在 64 位 Windows Server 2008 R2 服务器上安装 Trac。

我正在遵循http://trac.edgewall.org/wiki/TracInstall。我首先安装Python,安装的是Python 2.7.2 Windows Installer。(32位版本)。

然后,我尝试Setup Tools按照此处的指南进行安装:http://peak.telecommunity.com/DevCenter/setuptools#installing-setuptools

它似乎安装成功,但是当我运行时easy_install我总是得到:

Traceback (most recent call last):
  File "C:\Python26\Scripts\easy_install-script.py", line 5, in <module>
      from pkg_resources import load_entry_point
ImportError: No module named pkg_resources

在 Google 上搜索pkg_resources所有内容都指向错误安装setuptools,但我遵循了所有步骤!

有任何想法吗

答案1

这实在是太晚了(但我想迟到总比不到好!)。

查看安装程序版本:Python 2.7.2然后查看您的回溯(+1 发布该信息):错误在于C:\Python26\..

您需要更改PATH环境变量以指向 Python 2.7 安装路径(大概C:\Python27\),或者使用 Python 2.6 安装程序进行 setuptools 操作。

相关内容