Python Interpreter

Overview

  • C-Python
    • Python's offical interpreter.
    • c-python is based on C.
    • It is an open source software.
  • ActivePython
    • ActivePython is based on C.
    • Python's RedHat interpreter.
  • pypy
    • Python is complied to binary code Just-in-time. pypy runs faster than c-python.
    • It is an open source software.
  • IronPython
    • IronPython is based on .Net Framework.
    • open source software.
  • Jython
    • Jython is based on JVM.
    • It is an open source software.

ActivePython

ActivePython是redhat/activestate公司定制编译的二进制分发包,与python基本兼容。
ActivePython for Windows, Linux and Mac

  • ActivePython
    • python binary
    • pip
    • pyPM(python package manager index)
    • Python Win32 Extensions
      • PythonWin
    • mysql driver

PyPy Supportting Archetecture

  • x86-32
  • x86-64
  • ARM32
  • ARM64
  • PPC64
  • s390x

你可能感兴趣的:(Python Interpreter)