Windows Development update (#918)

Added not to upgrade setuptools to use the C++ libraries correctly.
This commit is contained in:
Sytone 2016-09-10 01:28:16 -07:00 committed by Fabian Affolter
parent 6d8fad05cf
commit 4e4eb63918

View File

@ -24,5 +24,11 @@ On Windows you can use `python setup.py develop` instead of the setup script.
After following these steps, running `hass` will invoke your local installation.
###Developing on Windows
If you are using Windows as a development platform ensure you have the correct Microsoft Visual C++ build tools installed. Please check [the Windows Compilers](https://wiki.python.org/moin/WindowsCompilers) section on the [Python website](https://www.python.org/) for details. Validation using `tox` will fail if this is not done correctly.
Ensure you install or upgrade the Setuptools Python package. It contain compatibility improvements and add automatic use of compilers:
```bash
pip install --upgrade setuptools
```