You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's basic commands are **update**, **install**, and **remove**.
28
+
It's basic commands are **update**, **install**, and **remove**.
29
29
30
30
.. man brew
31
31
32
32
33
-
34
-
Python Interpreter
35
-
------------------
36
-
37
33
And we can now install Python 2.7: ::
38
34
39
35
$ brew install python --framework
40
36
41
37
42
-
The ``--framework`` option tells Homebrew to compile a Framework-style Python build, rather than a UNIX-style build. The outdated version of Python that Snow Leopard comes packaged with
43
-
is built as a Framework, so this helps avoid some future module installation
44
-
bugs.
38
+
The ``--framework`` option tells Homebrew to compile a Framework-style Python build, rather than a UNIX-style build. The outdated version of Python that Snow Leopard comes packaged with
39
+
is built as a Framework, so this helps avoid some future module installation
40
+
bugs.
41
+
42
+
*Don't forget to update your environment PATH.*
43
+
44
+
45
+
Building From Source
46
+
--------------------
47
+
45
48
46
-
*Don't forget to update your environment PATH.*
47
49
48
50
49
51
Distribute & Pip
50
52
----------------
51
53
52
-
*Distribute* is a fantastic drop-in replacement for *easy_install* and
53
-
*setuptools*. It allows you to install and manage python packages from
54
-
pypi.python.org, amongst a few other sources. It also plays well with
55
-
*virtualenv* and user-enviornments.
54
+
*Distribute* is a fantastic drop-in replacement for *easy_install* and
55
+
*setuptools*. It allows you to install and manage python packages from
56
+
pypi.python.org, amongst a few other sources. It also plays well with
57
+
*virtualenv* and user-enviornments.
56
58
57
-
**easy_install** is considered by many to be a deprecated system, so we
58
-
will install it's replacement: **pip**. Pip allows for uninstallation
59
+
**easy_install** is considered by many to be a deprecated system, so we
60
+
will install it's replacement: **pip**. Pip allows for uninstallation
59
61
of packages, and is actively maintained, unlike setuptool's easy_install.
**Distribute** is a fantastic drop-in replacement for **easy_install** and **setuptools**. It allows you to install and manage python packages from PyPi, amongst a few other sources.
106
108
107
-
To install it, run the python script available here:
109
+
To install it, run the python script available here:
0 commit comments