[protobuf] Re: Unable to install protobuf-2.5.0 for python with setup.py

2012-12-30 Thread Andrew L K Goh
Hi, It works after doing "python setup.py build"! Thanks! Why this wasn't in the README.txt instruction? :( On Monday, December 24, 2012 12:23:02 PM UTC+8, Feng Xiao wrote: > > Have you tried "python setup.py build" before install? > > On Friday, December 21, 2012 11:10:24 PM UTC+8, Andrew L K

[protobuf] Re: Unable to install protobuf-2.5.0 for python with setup.py

2012-12-23 Thread Feng Xiao
Have you tried "python setup.py build" before install? On Friday, December 21, 2012 11:10:24 PM UTC+8, Andrew L K Goh wrote: > > Hi, > > Thanks for the reply. > That's what I did, where I said I successfully install the C++ library. > > I also verified that with "protoc --version". > Maybe because

[protobuf] Re: Unable to install protobuf-2.5.0 for python with setup.py

2012-12-21 Thread Andrew L K Goh
Hi, Thanks for the reply. That's what I did, where I said I successfully install the C++ library. I also verified that with "protoc --version". Maybe because I build the C++ library with "./configure --prefix=/usr" ? Regards, Andrew On Friday, December 21, 2012 3:38:08 AM UTC+8, jank...@gmail

[protobuf] Re: Unable to install protobuf-2.5.0 for python with setup.py

2012-12-21 Thread jankansky
I encountered the same problem. I got it to work by building first prior to installing: cd protobuf-2.5.0rc1 ./configure make sudo make install cd python python ./setup.py build sudo python ./setup.py install Good luck! I hope this new version fixes some of the Python C++ implementation bugs i