mirror of
https://github.com/kennethreitz/python-guide.git
synced 2026-06-05 23:00:18 +00:00
massive refactor
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
Freezing Your Code
|
||||
==================
|
||||
|
||||
An alterinative to shipping your code is freezing it — shipping it as an
|
||||
executable with a bundled Python enterpreter.
|
||||
|
||||
Many applications you use every day do this:
|
||||
|
||||
- Dropbox
|
||||
- Others
|
||||
|
||||
|
||||
Windows
|
||||
:::::::
|
||||
|
||||
|
||||
py2exe
|
||||
------
|
||||
|
||||
|
||||
|
||||
OSX
|
||||
:::
|
||||
|
||||
|
||||
py2app
|
||||
------
|
||||
|
||||
|
||||
|
||||
|
||||
PyInstaller
|
||||
-----------
|
||||
|
||||
|
||||
|
||||
|
||||
Linux
|
||||
:::::
|
||||
|
||||
|
||||
bbFreeze
|
||||
--------
|
||||
|
||||
PyInstaller
|
||||
-----------
|
||||
@@ -0,0 +1,31 @@
|
||||
Packaging Your Code
|
||||
===================
|
||||
|
||||
Packaging your code is important.
|
||||
|
||||
|
||||
For Python Developers
|
||||
:::::::::::::::::::::
|
||||
|
||||
If you're writing an open source Python module, `PyPi <http://pypi.python.org>`_, more properly known as *The Cheeseshop*, is the place to host it.
|
||||
|
||||
|
||||
|
||||
Pip vs. easy_install
|
||||
--------------------
|
||||
|
||||
x y z
|
||||
|
||||
|
||||
Personal PyPi
|
||||
-------------
|
||||
|
||||
|
||||
For Linux Distributions
|
||||
::::::::::::::::::::::::
|
||||
|
||||
Useful Tools
|
||||
````````````
|
||||
|
||||
- epm
|
||||
- alien
|
||||
Reference in New Issue
Block a user