Python Build Package with Dependencies Included

What is the best way to include dependencies in an assembly? I am using numpy, pandas, graphlab in my code.

Is there a way to do this with setuptools?

+4
source share
1 answer

I liked using PyInstaller for this purpose.

Numpy, pandas, matplotlib, PyQt, and a number of other packages with several binary bits and parts work well for me in my case, which is created and deployed on Windows desktops.

0
source

Source: https://habr.com/ru/post/1620664/


All Articles