I’m writing a program that relies on the user having third party packages already installed. Is there any way to include those packages in my installer, or will they have to install them separately? I’m using distutils in 2.7 if it matters.
I’m writing a program that relies on the user having third party packages already
Share
This depends on the complexity of the 3rd party package. If it is pure python, you may simply bundle it with the rest of your code. If it needs a more complicated install process, you will probably need users to install it themselves.