Re: [Matplotlib-users] Import pylab fails from c-code

2009-11-16 Thread John Hunter
On Mon, Nov 16, 2009 at 6:16 AM, wrote: > > Hello everyone, > > I use the following C-Code in visual studio 2005 (I start the program with > "Release" configuration): > > #include > #include > using namespace std; > > void main() > { >         Py_Initialize(); > >         while (1) >         {

[Matplotlib-users] Import pylab fails from c-code

2009-11-16 Thread markus . proeller
Hello everyone, I use the following C-Code in visual studio 2005 (I start the program with "Release" configuration): #include #include using namespace std; void main() { Py_Initialize(); while (1) { char test[100] = {}; cout<<">>> ";