Issue #7092: Fix the DeprecationWarnings emitted by the standard library
[python.git] / Doc / faq / installed.rst
blob390c85abe424ef589907e370955804b73f0c545a
1 =============================================
2 "Why is Python Installed on my Computer?" FAQ
3 =============================================
5 What is Python?
6 ---------------
8 Python is a programming language.  It's used for many different applications.
9 It's used in some high schools and colleges as an introductory programming
10 language because Python is easy to learn, but it's also used by professional
11 software developers at places such as Google, NASA, and Lucasfilm Ltd.
13 If you wish to learn more about Python, start with the `Beginner's Guide to
14 Python <http://wiki.python.org/moin/BeginnersGuide>`_.
17 Why is Python installed on my machine?
18 --------------------------------------
20 If you find Python installed on your system but don't remember installing it,
21 there are several possible ways it could have gotten there.
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
27   Python and included a Python installation.  For a home computer, the most
28   common such application is `PySol <http://pysolfc.sourceforge.net/>`_, a
29   solitaire game that includes over 1000 different games and variations.
30 * Some Windows machines also have Python installed.  At this writing we're aware
31   of computers from Hewlett-Packard and Compaq that include Python.  Apparently
32   some of HP/Compaq's administrative tools are written in Python.
33 * All Apple computers running Mac OS X have Python installed; it's included in
34   the base installation.
37 Can I delete Python?
38 --------------------
40 That depends on where Python came from.
42 If someone installed it deliberately, you can remove it without hurting
43 anything.  On Windows, use the Add/Remove Programs icon in the Control Panel.
45 If Python was installed by a third-party application, you can also remove it,
46 but that application will no longer work.  You should use that application's
47 uninstaller rather than removing Python directly.
49 If Python came with your operating system, removing it is not recommended.  If
50 you remove it, whatever tools were written in Python will no longer run, and
51 some of them might be important to you.  Reinstalling the whole system would
52 then be required to fix things again.