Skip to content

Commit 4612c6e

Browse files
committed
which-python changes
1 parent 5eeea52 commit 4612c6e

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

docs/scenarios/.DS_Store

6 KB
Binary file not shown.

docs/scenarios/gui.rst

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,29 @@ http://www.riverbankcomputing.co.uk/software/pyqt/download
1717

1818
Cocoa
1919
:::::
20+
*Note: The Cocoa framework is only available on Mac OSX. Don't pick this if you're writing a cross-platform application!*
2021

2122
PyObjC
2223
------
23-
*Note: Only available on Mac OSX. Don't pick this if you're writing a cross-platform application.*
24+
PyObjC 2.0 is included in the default python installation of Mac OS X 10.5 Leopard.
25+
To install the latest version: ::
26+
$ pip install pyobjc
27+
or go to http://pyobjc.sourceforge.net/downloads.html
2428

2529
WXPython
2630
::::::::
2731
Install (Stable)
2832
----
2933
*Go to http://www.wxpython.org/download.php#stable and download the appropriate package for your OS.*
34+
The simplest method to test if it works is to attempt to import it. ::
35+
Aarons-MacBook:docs aaron$ python
36+
Python 2.6.6 (r266:84374, Aug 31 2010, 11:00:51)
37+
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin
38+
>>> import wx
39+
Traceback (most recent call last):
40+
File "<stdin>", line 1, in <module>
41+
ImportError: No module named wx
42+
If you don't get the above error, WXPython is installed.
3043

3144
Gtk
3245
:::

docs/starting/.DS_Store

6 KB
Binary file not shown.

docs/starting/which-python.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ Which Python to use?
66

77
2.x vs 3.x
88
::::::::::
9-
9+
http://wiki.python.org/moin/Python2orPython3
1010

1111

1212
History
1313
-------
14-
14+
Python2.0 was released October 16, 2000. Python3.0 was released on December 3,2008 and breaks backwards compatibility.
1515

1616

1717
Today

0 commit comments

Comments
 (0)