Re: [Tutor] Does the user need to install Python, when we deploy our c++ products using python?

2014-12-11 Thread James Chapman
On 2 December 2014 at 20:28, gordon zhang wrote: > > > I downloaded python 3.4.2 for c++ and create a vc++ project using python, > but I have no idea what python dlls and other stuff needed to deploy the > products. > > I know if we put Python34.dll and Python.dll in the folder of executable, > i

Re: [Tutor] Does the user need to install Python, when we deploy our c++ products using python?

2014-12-11 Thread James Chapman
Actually, after re-reading your original message I think I misunderstood and went off on a tangent. If you are embedding python into a C++ app, then you will need the dlls and all of the compiled python code. *.pyc. (Well most, not all). The exact location of these files in the final build I'm uns

Re: [Tutor] Does the user need to install Python, when we deploy our c++ products using python?

2014-12-03 Thread Steven D'Aprano
On Tue, Dec 02, 2014 at 01:28:36PM -0700, gordon zhang wrote: > I downloaded python 3.4.2 for c++ and create a vc++ project using python, > but I have no idea what python dlls and other stuff needed to deploy the > products. > > I know if we put Python34.dll and Python.dll in the folder of executa

Re: [Tutor] Does the user need to install Python, when we deploy our c++ products using python?

2014-12-03 Thread Alan Gauld
On 02/12/14 20:28, gordon zhang wrote: I downloaded python 3.4.2 for c++ and create a vc++ project using python, but I have no idea what python dlls and other stuff needed to deploy the products. Python is an interpreter so you will need the full Python interpreter and all the module files th

[Tutor] Does the user need to install Python, when we deploy our c++ products using python?

2014-12-03 Thread gordon zhang
I downloaded python 3.4.2 for c++ and create a vc++ project using python, but I have no idea what python dlls and other stuff needed to deploy the products. I know if we put Python34.dll and Python.dll in the folder of executable, it is not enough. What else do we need to put in the folder of exec