Pip - Overview The pip command is a tool for installing and managing Python packages, such as those found in the Python Package Index. It's a replacement for easy_install. PIP Installation Installing PIP is easy and if you're running Linux, its usually already installed. If it's not installed or if ...
Python Modules In this post, we'll look at the Python Standard Library and Python Package Index Python Standard Library URL: http://docs.python.org/library/index.html What it is Collection of of modules that are already on the system, thus there is no need to install them. Just import the modules you want to use. ...