Could not find vcvarsall.bat

I know one more question about this here , but I cannot answer this question. According to this answer , I just need to add a variable. However, I do not know where the variable is created and where it is located. Usually I only work with files and folders, so I don’t know how to get the added variable. Since I thought the variable could be inside bat files, I looked at vcvarsall.bat, vsvars32.bat and vsDevCmd.bat. In the last two files I found lines with the text set VS110COMNTOOLS= , so on the line right after I set @set VS90COMNTOOLS= C:\Program Files\Microsoft Visual Studio 11.0\Common7\Tools\ , as the answer said. However, the same error occurred. I tried to install Visual Studio 2010 as a response to 2010, but since I already have VS 2012, I could not.

To summarize exactly where the VS10COMNTOOLS=C:\Program Files\Microsoft Visual Studio 10.0\Common7\Tools\ environment variable is located? Thanks!

Edit: sorry i confused VS 11 since 2011

+4
source share
2 answers

Set the VS110COMNTOOLS variable to [...]Microsoft Visual Studio 11.0\Common7\Tools\

Had the same problem in some qt project when using vc compiler. You must copy each missing file to the [...]Microsoft Visual Studio 11.0\Common7\Tools\ folder.

Simple: - Read the new error - copy the missing file located somewhere in the folder [...]Microsoft Visual Studio 11.0\VC\

to mistakes

EDIT: You used VS110 , VS100 and VS90 in your case (VS2011), which would be VS110

0
source

What are you trying to import? Some modules do not work well on Windows - it’s best to look at this .exe repository for Python packages for Windows .

In addition, I was lucky using all 32-bit versions of packages. I would recommend you do the same.

+2
source

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


All Articles