0

fetch/gclient sync 在 Windows Server 2012(64 位)主机上的终端窗口中工作正常。TeamCity 构建代理是 32 位应用程序,我无法更改它。当我尝试将 fetch/gclient sync 作为构建步骤运行时,它失败了。这里的错误信息:

New python executable in C:\Windows\system32\config\systemprofile\.vpython-root\ac0e59\Scripts\python.exe

ERROR: The executable C:\Windows\system32\config\systemprofile\.vpython-root\ac0e59\Scripts\python.exe is not functioning

ERROR: It thinks sys.prefix is u'c:\\windows\\syswow64\\config\\systemprofile\\.vpython-root\\ac0e59' (should be u'c:\\windows\\system32\\config\\systemprofile\\.vpython-root\\ac0e59')

ERROR: virtualenv is not compatible with this system or executable

Note: some Windows users have reported this error when they installed Python for "Only this user" or have multiple versions of Python installed. Copying the appropriate PythonXX.dll to the virtualenv Scripts/ directory may fix this problem.

python输出下一个的命令:

C:\>where python
C:\utils\depot_tools\python.bat
C:\DevTools\Python27\python.exe

所以我认为这里的主要问题是:

ERROR: It thinks sys.prefix is u'c:\\windows\\syswow64\\config\\systemprofile\\.vpython-root\\ac0e59' (should be u'c:\\windows\\system32\\config\\systemprofile\\.vpython-root\\ac0e59')

我没有解决方案。

任何想法如何解决它?

4

1 回答 1

0

开箱即用不支持 32 位构建主机很可能。我无法调试它,因为我无法访问这样的机器。

尝试更改您的%PATH%,以便系统安装的 Python 位于 depot_tools 之前。这可能会有所帮助,或者它可能会随机破坏其他东西或根本不起作用。

恐怕您必须自己花一些时间来调试它。对不起。

于 2018-12-05T20:05:07.600 回答