Can I embed python into my app using only boost:python? Will I need any additional libraries to bring with my app?
Or is there any embeddable language which natively supports unicode chars and does not need any libraries to bring with app
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To integrate Python in a C++ application you can use Boost.Python but you can also interface the Python C API directly.
For both you need the Python library, for Boost.Python approach you also need to link to the Boost.Python library.