Python Environment Setup

Source: Internet
Author: User
Tags python script

Python Environment Setup

In this section we will show you how to build a python development environment locally.

Python can be applied to multiple platforms including Linux and Mac OS X, which are already supported by Python and do not need to be configured for installation.

Download the latest version of the Python 2.7.9 directly under Windows, and when you install it, pay attention to choosing

You can enter the "python" command from the terminal window to see if you have installed Python and the Python installation version locally.

    • Unix (Solaris, Linux, FreeBSD, AIX, Hp/ux, SunOS, IRIX, etc.). )
    • Win 9x/nt/2000
    • Macintosh (Intel, PPC, 68K)
    • Os/2
    • DOS (multiple DOS versions)
    • PalmOS
    • Nokia Mobile Phone
    • Windows CE
    • Acorn/risc OS
    • BeOS
    • Amiga
    • Vms/openvms
    • Qnx
    • VxWorks
    • Psion
    • Python can also be ported to Java and. NET virtual machines.
Python download

Python's latest source code, binary documents, news, etc. can be found on the Python website:

Python official website: http://www.python.org/

You can download the Python document in the link, and you can download the documents in HTML, PDF and PostScript format.

Python Documentation: Www.python.org/doc/Python installation

Python has been ported on many platforms (modified to make it work on different platforms).

You will need to download the binary code that is appropriate for your use of the platform, and then install Python.

If the binary code of your platform is not available, you need to compile the source code manually using the C compiler.

The compiled source code, with more selectivity in functionality, provides more flexibility for Python installation.

Here's how to install Python on different platforms: Unix & Linux Platform Installation python:

Here are the simple steps to install Python on UNIX & Linux platforms:

    • Open a Web browser to access http://www.python.org/download/
    • Select the source compression package for unix/linux.
    • Download and unzip the zip package.
    • If you need to customize some options to modify modules/setup
    • execute the./configure Script
    • Make
    • Make install

After doing this, Python is installed in the/usr/local/bin directory, and the Python library is installed in/USR/LOCAL/LIB/PYTHONXX,XX for the version number of the python you are using. Windows platform installs Python:

Here are the simple steps to install Python on the Window platform:

    • Open a Web browser to access http://www.python.org/download/
    • Select the Window platform installation package in the download list, in the package format:python-xyz.msi file, XYZ is the version number you want to install.
    • To use setup python-xyz.msi, Windows systems must be supported with Microsoft Installer 2.0. Just save the installation file to your local computer, and then run it to see if your machine supports MSI. Windows XP and later versions already have MSI, and many older machines can also install MSI.
    • After downloading, double-click the download package, go to the Python Installation Wizard, the installation is very simple, you just need to use the default settings always click "Next" until the installation is complete.
MAC Platform Installation Python:

The most recent Macs system comes with a python environment, but the Python version comes with an older version, and you can view the new features of Python on your Mac via the link http://www.python.org/download/mac/.

Complete Python installation tutorials on Mac You can view: http://www.cwi.nl/~jack/macpython.html environment variable Configuration

Programs and executables can be in many directories, and these paths are probably not in the search path where the operating system provides executable files.

The path is stored in an environment variable, which is a named string maintained by the operating system. These variables contain information about the available command-line interpreters and other programs.

Path variable in UNIX or Windows is path (Unix case-sensitive, Windows is case-insensitive).

In Mac OS, the setup process changes the Python installation path. If you need to reference Python in another directory, you must add a Python directory to the path. Setting environment variables in Unix/linux

    • in CSH Shell: input
      setenv PATH "$PATH:/usr/local/bin/python"
      , press "Enter".
    • in Bash Shell (Linux): input
      , press "Enter".
    • in sh or ksh shell: input
      , press "Enter".

Note: /usr/local/bin/python is the installation directory for Python. Setting environment variables in Windows

To add a Python directory to an environment variable:

Press "Enter".

Note: C:\Python is the installation directory for Python.

You can also set it in the following ways:

    • Right-click on "Computer" and click "Properties"
    • Then click "Advanced System Settings"
    • Select "Path" under the "System Variables" window and double click!
    • Then in the "path" line, add the Python installation path (my D:\Python32), so later, add the path. PS: Remember, the path is separated directly by a semicolon ";"
    • After the final setting is successful, on the cmd command line, enter the command "Python" and you can have the relevant display.

Python Environment variables

Here are a few important environment variables that apply to Python:

variable name

describes

pythonpath

PYTHONPATH python search path, default we import pythonpath inside looking.

pythonstartup

Python After starting, look for pythonstartup environment variable, then executes the execution code specified in the variable in this file.

pythoncaseok

join Span style= "font-family:" >pythoncaseok , python When importing modules is case insensitive

Pythonhome

another module search path. It is typically embedded in the pythonstartup or PYTHONPATH directory, making it easier to switch between two module libraries.

Run Python

There are three ways to run Python:1, interactive interpreter:

You can enter Python from a command-line window and start writing Python code in the interactive interpreter.

You can do python coding in unix,dos or any other system that provides a command line or shell.

$python # Unix/linux
Or
python% # Unix/linux
Or
C:>python # Windows/dos

The following are the Python command-line parameters:

option

describes

-d

display debug information on parsing

-o

Generate optimization code (. Pyo file )

-s

find not introduced at startup python path location

-v

output Span style= "font-family:" >python version number

-x

from 1.6

-c cmd

execute Span style= "font-family:" > Python script, and run the result as cmd

File

in a given python File Execution python script.

2. Command line script

In your application, you can execute a python script on the command line by introducing an interpreter, as follows:

$python script.py # Unix/linux
Or
python% script.py # Unix/linux
Or
C:>python script.py # Windows/dos

Note: when executing a script, check to see if the script has executable permissions. 3. Integrated development Environment (ide:integrated development environment)

You can use a graphical user interface (GUI) environment to write and run Python code. The following are recommended for use by the IDE on each platform:

    • Unix: IDLE is the earliest Python IDE on UNIX.
    • Windows: Pythonwin is a Python integrated development environment that is superior to the IDE in many ways
    • Macintosh: Python's Mac can use the idle IDE, and you can download the corresponding Mac's idle on your website.

Before proceeding to the next chapter, make sure that your environment has been successfully built. If you are not able to build the right environment, then you can get help from your system administrator.

Examples given in later chapters have been tested in the Python2.4.3 version of CentOS (Linux).

Python Environment Setup

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.