Tell me how to save a program written in python so that it can be used by other users. How the project is preserved, in general, I cannot even correctly formulate a proposal, I hope I understand.

    4 answers 4

    Look towards cx_Freeze .

    But nevertheless, IMHO it is better to install python on the machine where your program will be executed.

      The wording is a bit confusing.

      If you need to package the program into an executable file, then for windows there is py2exe, for example, but it is only for python 2.7. For linux, you can build your package.

      If you need to share the source code, then you need to look towards version control systems such as git, mercurial, etc.

        I advise you to discover git. And in order to share - github. If you plan to use closed repositories, then you can look at bitbucket.

        • one
          as I understand it, the author means something like an exe file that can be transferred to users, not programmers - Barton
        • Here now, right. how to exe use other users - JackieChan

        for Windows: cx_Freeze , PyInstaller , py2exe.
        for Linux is the same PyInstaller.
        for Mac - Py2app.

        there is an opinion that PyInstaller is better ..