Distributing Python programs

后端 未结 6 1686
独厮守ぢ
独厮守ぢ 2020-12-05 20:03

How do I let my friends use my Python programs? They don\'t have python installed, but they can use command line programs. I don\'t have the skill to write GUI.

Let,

6条回答
  •  抹茶落季
    2020-12-05 21:03

    A less general, but lightweight and simple way of putting many Python files into 1 or 2 files (Python programs) is Fredrik Lundh's squeeze program. When you "squeeze" a bunch of Python programs and modules, you can often produce a single Python program. People still need Python to run it (but it's included in most Unix distributions, including Mac OS X), but you can easily distribute it, as your program and modules are all bunched up in a single file.

提交回复
热议问题