Home > Software design >  How do I compile a Python file with all the libraries on the Linux?
How do I compile a Python file with all the libraries on the Linux?

Time:06-24

I have a Python file that I want to compile with all the libraries and so on, so that users don't have to download the necessary libraries. And then I want to put it in /usr/bin to make a command for the script.

How do I compile my script so that it has all the required libraries and so on?

CodePudding user response:

You can use pyinstaller and in the build file you will see that there is an exe file and another file that works on Linux

  • Related