-
Notifications
You must be signed in to change notification settings - Fork 0
Build instructions
First, you'll need a compiler. You can either use Visual Studio, or cygwin/mingw.
You can get a free copy of Visual Studio Express here: http://www.microsoft.com/express/Windows/
You will want the C++ version (Microsoft® Visual C++® 2010 Express)
-
Get the latest source code from github
-
From the Start menu, navigate to the 'Microsoft Visual Studio 2010 Express' and open the 'Visual Studio Command Prompt (2010)' shortcut.
-
cd to the folder containing the Overviewer source code
-
First try a build:
c:\python26\python setup.py build
If you encounter the following errors: error: Unable to find vcvarsall.bat then try the following:
set DISTUTILS_USE_SDK=1
set MSSdk=1
c:\python26\python setup.py build
If the build was successful, there should be a c_overviewer.pyd file in your current working directory.
TODO fill out this section
You will need the gcc compiler, which is normally installed by default.
You will need the following packages (at least):
- python-imaging (for PIL)
- python2.6-dev
- python-numpy
Then to build: python2.6 setup.py build
TODO fill this out.