mirror of
https://github.com/kennethreitz/python-guide.git
synced 2026-06-05 14:50:19 +00:00
which-python changes
This commit is contained in:
Vendored
BIN
Binary file not shown.
+14
-1
@@ -17,16 +17,29 @@ http://www.riverbankcomputing.co.uk/software/pyqt/download
|
||||
|
||||
Cocoa
|
||||
:::::
|
||||
*Note: The Cocoa framework is only available on Mac OSX. Don't pick this if you're writing a cross-platform application!*
|
||||
|
||||
PyObjC
|
||||
------
|
||||
*Note: Only available on Mac OSX. Don't pick this if you're writing a cross-platform application.*
|
||||
PyObjC 2.0 is included in the default python installation of Mac OS X 10.5 Leopard.
|
||||
To install the latest version: ::
|
||||
$ pip install pyobjc
|
||||
or go to http://pyobjc.sourceforge.net/downloads.html
|
||||
|
||||
WXPython
|
||||
::::::::
|
||||
Install (Stable)
|
||||
----
|
||||
*Go to http://www.wxpython.org/download.php#stable and download the appropriate package for your OS.*
|
||||
The simplest method to test if it works is to attempt to import it. ::
|
||||
Aarons-MacBook:docs aaron$ python
|
||||
Python 2.6.6 (r266:84374, Aug 31 2010, 11:00:51)
|
||||
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin
|
||||
>>> import wx
|
||||
Traceback (most recent call last):
|
||||
File "<stdin>", line 1, in <module>
|
||||
ImportError: No module named wx
|
||||
If you don't get the above error, WXPython is installed.
|
||||
|
||||
Gtk
|
||||
:::
|
||||
|
||||
Vendored
BIN
Binary file not shown.
@@ -6,12 +6,12 @@ Which Python to use?
|
||||
|
||||
2.x vs 3.x
|
||||
::::::::::
|
||||
|
||||
http://wiki.python.org/moin/Python2orPython3
|
||||
|
||||
|
||||
History
|
||||
-------
|
||||
|
||||
Python2.0 was released October 16, 2000. Python3.0 was released on December 3,2008 and breaks backwards compatibility.
|
||||
|
||||
|
||||
Today
|
||||
|
||||
Reference in New Issue
Block a user