blob: efec9bf7910a02398e30f6c027f2cc02503a809f [file] [log] [blame]
Georg Brandld7413152009-10-11 21:25:26 +00001=============================================
2"Why is Python Installed on my Computer?" FAQ
3=============================================
4
5What is Python?
6---------------
7
8Python is a programming language. It's used for many different applications.
9It's used in some high schools and colleges as an introductory programming
10language because Python is easy to learn, but it's also used by professional
11software developers at places such as Google, NASA, and Lucasfilm Ltd.
12
13If you wish to learn more about Python, start with the `Beginner's Guide to
14Python <http://wiki.python.org/moin/BeginnersGuide>`_.
15
16
17Why is Python installed on my machine?
18--------------------------------------
19
20If you find Python installed on your system but don't remember installing it,
21there are several possible ways it could have gotten there.
22
23* Perhaps another user on the computer wanted to learn programming and installed
24 it; you'll have to figure out who's been using the machine and might have
25 installed it.
26* A third-party application installed on the machine might have been written in
Antoine Pitrouf7005242011-02-05 11:04:01 +000027 Python and included a Python installation. There are many such applications,
28 from GUI programs to network servers and administrative scripts.
Georg Brandld7413152009-10-11 21:25:26 +000029* Some Windows machines also have Python installed. At this writing we're aware
30 of computers from Hewlett-Packard and Compaq that include Python. Apparently
31 some of HP/Compaq's administrative tools are written in Python.
Antoine Pitrouf7005242011-02-05 11:04:01 +000032* Many Unix-compatible operating systems, such as Mac OS X and some Linux
33 distributions, have Python installed by default; it's included in the base
34 installation.
Georg Brandld7413152009-10-11 21:25:26 +000035
36
37Can I delete Python?
38--------------------
39
40That depends on where Python came from.
41
42If someone installed it deliberately, you can remove it without hurting
43anything. On Windows, use the Add/Remove Programs icon in the Control Panel.
44
45If Python was installed by a third-party application, you can also remove it,
46but that application will no longer work. You should use that application's
47uninstaller rather than removing Python directly.
48
49If Python came with your operating system, removing it is not recommended. If
50you remove it, whatever tools were written in Python will no longer run, and
51some of them might be important to you. Reinstalling the whole system would
52then be required to fix things again.
53