0

I've come across a github project which I am trying to install and run it but I've run into some problems( https://github.com/andrewschoen/django-cms-demo ). I've also put this up as an issue https://github.com/andrewschoen/django-cms-demo/issues/2 . The entire pip log is available there.

The problem appears to revolve around disutil, if I understand correctly:

f:\python27\Lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'use_2to3'
 warnings.warn(msg)
 error: Unable to find vcvarsall.bat

I'm just starting with python and django , having come from php. I'm trying to set this project up on a USB drive, and I'm working on win7.

Thanks in advance for your thoughts,

Bill

user1592380
  • 34,265
  • 92
  • 284
  • 515

1 Answers1

1

error: Unable to find vcvarsall.bat

You do not have a valid Visual C++ Installation in your System. Visual C++ Express Edition is free and you can download and install it.

In Case, if Visual C++ is Installed but you are still facing the issue, check the following environment variables

VS100COMNTOOLS

VS110COMNTOOLS

To ascertain if they are set and locates to a valid Common7\Tools location

Abhijit
  • 62,056
  • 18
  • 131
  • 204