Why am I getting an error on the last line of the Pylons 1.0 installation with easy_install and Python 2.7 on Windows Vista 64?

I tried installing Pylons 1.0 using Python 2.7 using the command easy_installon Windows Vista 64 , but I got the error:

    raise ValueError(str(list(result.keys())))
ValueError: [u'path']

Here is a link to the entire installation process from the command line http://pastie.org/1190341

  • Why am I getting this error?
  • How do I solve it?
  • Will Pylons work even though I got this error?
+3
source share
5 answers

From the error:

File "C:\Python27\Lib\distutils\msvc9compiler.py", line 295, in q
uery_vcvarsall
    raise ValueError(str(list(result.keys())))
ValueError: [u'path']

distutils vcvarsall.bat. include lib, . , , .

vcvarsall.bat , : C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC

:

C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\amd64 \ C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin\amd64\vcvarsamd64.bat

vcvarsamd64.bat

"C:\Program Files\Microsoft SDK\Windows\v7.1\Bin\SetEnv.cmd" /x 64/Release

Windows disutils. 64- , pypi 32- . disutils 64- . .

:

vcvarsamd64.bat batchfile, libs, tools .., disutils.

[Edit: setenv.cmd v6]

https://serverfault.com/questions/114998/vista-cmd-shell-thinks-its-windows-server-2008-debug

+6

, :

(2008), simplejson, . , , .

+2

x64 visual studio, cmd "". .

+2

, C, Windows. Windows Pylons. MinGW, .

0

, ++ 64- Python 64- Windows. , .

http://msdn.microsoft.com/en-us/library/ms246588(v=vs.90).aspx

VS 2008 Professional , "X64 Compilers and Tools".

0

Source: https://habr.com/ru/post/1767288/


All Articles