Python Package Index

Python Package Index

The Python Package Index or PyPI is the official third-party software repository for the Python programming language. Python developers intend it to be a comprehensive catalog of all open source Python packages. Wikipedia

The Python Package Index is a repository of software for the Python programming language. Official Homepage

    root@edison:~# opkg install python-pip python-dev
    root@edison:~# pip install setuptools

Python Library

    root@edison:~# python
    Python 2.7.3 (default, Dec 19 2015, 23:06:02)
    [GCC 4.9.1] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import psutil
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    ImportError: No module named psutil
    >>> <CTRL-D>

Python Library Optional Installation Path

Python Library Default Installation Path

Python Library Github Installation

Python Easy_Install

Last updated