Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How boost.python deal with Python 3 ? Is it Python 2 only ?

Thank you.

share|improve this question
1  
Seems that they are working on it. boost.org/doc/libs/1_46_0/libs/python/doc/news.html – mkaes Apr 4 '11 at 14:04

1 Answer

up vote 6 down vote accepted

Newer versions of Boost should work fine with Python V3.x. This support has been added quite some time ago, I believe after a successful Google Summer of Code project back in 2009.

The way to use Python V3 with Boost is to properly configure the build system by adding for instance:

using python : 3.1 : /your_python31_root ;

to your user-config.jam file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.