Peter DeVore wrote: > C:\Some\Path\Here\veusz-1.12>python setup.py build > running build > running build_py > running build_ext > building 'veusz.helpers._nc_cntr' extension > error: Unable to find vcvarsall.bat > > I would like to build with MinGW. I tried searching for the phrase > "vcvarsall.bat" throughout the folder but could not find it. Is there > something I could do to help so it could integrate with Python for > Windows (I have a little time on the weekends)?
Hi Peter - I'm not familiar with this error message. Have you told distutils to use mingw rather than visual c++? distutils.cfg needs to have [build] compiler=mingw32 as here http://wiki.cython.org/InstallingOnWindows You can use veusz for embedding without compiling it if you prefer. You can put the embed.py and __init__.py files in the binary distribution in a directory called veusz, and add this directory to the PYTHONPATH enviroment variable, or add it to sys.path. Jeremy _______________________________________________ Veusz-discuss mailing list [email protected] https://mail.gna.org/listinfo/veusz-discuss
