Download ArticleDownload Article

Python is an interpreted, object-oriented, high-level programming language that is a great place for beginners to start learning how to program. Python comes installed on Macs and with Linux, but you'll need to install it yourself if you're using Windows. If you're using a Mac or a Linux computer, you can install the latest version to ensure you have access to the latest features.

Method 1
Method 1 of 3:

Windows

Download Article
  1. How.com.vn English: Step 1 Visit the Python website.
    You can download everything you need to get started with Python from the Python website (python.org/downloads. The website should automatically detect that you're using Windows and present the links to the Windows installer.
  2. How.com.vn English: Step 2 Choose which version you want to install.
    There are currently two versions of Python available: 3.x.x and 2.7.10. Python makes both available to download, but new users should choose the 3.x.x version. Download the 2.7.10 if you are going to be working with legacy Python code or with programs and libraries that haven't adopted 3.x.x yet.
    • This guide will assume you are installing 3.x.x.
    Advertisement
  3. How.com.vn English: Step 3 Run the installer after downloading it.
    Clicking the button for the version you want will download the installer for it. Run this installer after it has finished downloading.
  4. Step 4 Check the "Add Python 3.5 to PATH" box.
    This will allow you to run Python directly from the Command Prompt.
  5. Step 5 Click "Install Now".
    This will install Python with all of its default settings, which should be fine for most users.
    • If you want to disable certain functions, change the installation directory, or install the debugger, click "Customize installation" instead and then check or uncheck the boxes.
  6. How.com.vn English: Step 6 Open the Python interpreter.
    To verify that Python is installed and working correctly, open the newly-installed interpreter. Click the Start button and type "python" to quickly open it.
  7. How.com.vn English: Step 7 Try out a test script.
    Python will open to a command line. Type the following command and press Enter to display "Hello world!" on the screen:
    print('Hello world!')
  8. How.com.vn English: Step 8 Open the IDLE development environment.
    Python comes with a development environment called IDLE. This allows you to run, test, and debug scripts. You can quickly launch IDLE by opening the Start menu and searching for "idle".
  9. How.com.vn English: Step 9 Continue learning Python.
    Now that you've verified that Python is installed and working, you can start learning how to use it. See How to Start Programming in Python for some tips on learning how to use Python.
  10. Advertisement
Method 2
Method 2 of 3:

Mac

Download Article
  1. How.com.vn English: Step 1 Decide if you want to install Python 3.x.x.
    All versions of OS X come with Python 2.7 already installed. If you don't need the newer version of Python, you don't need to install anything. If you want access to the newest versions of Python, you'll want to install 3.x.x.
    • If you just want to use the included version of Python, you can create scripts in a text editor and run them through the terminal.
  2. How.com.vn English: Step 2 Download the Python 3.x.x files from the Python website.
    Visit (python.org/downloads on your Mac. It should detect your operating system and show the Mac installation files. If it doesn't, click the "Mac OS X" link.
  3. How.com.vn English: Step 3 Double-click the downloaded PKG file to start installing Python.
    Follow the prompts to install Python. Most users can just use the default settings.
  4. How.com.vn English: Step 4 Launch Python in the terminal.
    To verify that the installation went OK, launch the terminal and type python3. This should start the Python 3.x.x interface, and display the version.
  5. How.com.vn English: Step 5 Open the IDLE development environment.
    This program allows you to write and test Python scripts. You can find it in the Applications folder.
  6. How.com.vn English: Step 6 Try out a test script.
    IDLE will open an environment similar to a terminal screen. Type the following command and press Enter to display "Hello world!":
    print('Hello world!')
  7. How.com.vn English: Step 7 Start using Python.
    Now that Python is installed, you can start using it to learn how to program. See How to Start Programming in Python for more instructions for Python beginners.
  8. Advertisement
Method 3
Method 3 of 3:

Linux

Download Article
  1. How.com.vn English: Step 1 Check the version of Python you already have installed.
    Nearly every distribution of Linux comes with Python installed. You can see what version you have by opening the Terminal and typing python.
  2. How.com.vn English: Step 2 Install the newest version in Ubuntu.
    Open the Terminal window and type sudo apt-get install python.
    • You can also install Python using Ubuntu's Add/Remove Applications app located in the Applications window.
  3. How.com.vn English: Step 3 Install the newest version in Red Hat and Fedora.
    Open the Terminal window and type sudo yum install python.
  4. How.com.vn English: Step 4 Install the newest version in Arch Linux.
    Log in as the root user. Type pacman -S python.
  5. How.com.vn English: Step 5 Download the IDLE environment.
    If you want to use the Python development environment, you can get it by using your distribution's software manager. Just search for "python idle" to find and install the package.
  6. How.com.vn English: Step 6 Learn how to program in Python.
    Now that you have the latest version of Python installed, you can start learning how to use it to program. See How to Start Programming in Python for some tips on learning Python.
  7. Advertisement

Expert Q&A

Search
Add New Question
  • Question
    How do I check if a package is installed in Python?
    How.com.vn English: Kevin Burnett
    Kevin Burnett
    Software Developer
    Kevin Burnett is a Software Developer with over 20 years of professional experience. He spent the majority of his career at Rosetta Stone, a language-learning software company. He has experience with both front and back-end development and works primarily in Ruby, Python, and JavaScript.
    How.com.vn English: Kevin Burnett
    Software Developer
    Expert Answer
    You can use find spec, a built-in standard library tool within the Python program. You have to import lib.util first, and then you can use find spec. Then you give it the specific package that you want to learn more about. Find Spec can directly inform you if the package has been installed.
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
      Advertisement

      Tips

      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Thanks for submitting a tip for review!

      Expert Interview

      Thanks for reading our article! If you’d like to learn more about computer programming, check out our in-depth interview with Kevin Burnett.


      About This Article

      How.com.vn English: Kevin Burnett
      Co-authored by:
      Software Developer
      This article was co-authored by Kevin Burnett. Kevin Burnett is a Software Developer with over 20 years of professional experience. He spent the majority of his career at Rosetta Stone, a language-learning software company. He has experience with both front and back-end development and works primarily in Ruby, Python, and JavaScript. This article has been viewed 37,348 times.
      How helpful is this?
      Co-authors: 13
      Updated: April 30, 2024
      Views: 37,348
      Categories: Python
      Article SummaryX

      1.Go to the Python download site.
      2.Select a version to download.
      3.Run the installer.
      4.Select the option to add the directory to your PATH.
      5.Click INSTALL NOW.
      6.Open the Python interpreter.
      7.Try a test script.

      Did this summary help you?

      Thanks to all authors for creating a page that has been read 37,348 times.

      Is this article up to date?

      ⚠️ Disclaimer:

      Content from Wiki How English language website. Text is available under the Creative Commons Attribution-Share Alike License; additional terms may apply.
      Wiki How does not encourage the violation of any laws, and cannot be responsible for any violations of such laws, should you link to this domain, or use, reproduce, or republish the information contained herein.

      Notices:
      • - A few of these subjects are frequently censored by educational, governmental, corporate, parental and other filtering schemes.
      • - Some articles may contain names, images, artworks or descriptions of events that some cultures restrict access to
      • - Please note: Wiki How does not give you opinion about the law, or advice about medical. If you need specific advice (for example, medical, legal, financial or risk management), please seek a professional who is licensed or knowledgeable in that area.
      • - Readers should not judge the importance of topics based on their coverage on Wiki How, nor think a topic is important just because it is the subject of a Wiki article.

      Advertisement