Python - pip

Card Puncher Data Processing

Python - pip

About

Pip is a package manager.

Use pip to manage Python packages from PyPI.

  1. Command line options have precedence over
  2. the environment variables, which have precedence over
  3. the config file.

Install

apt-get install -y python-pip

Package Management

Help

python -m pip --help

Install

Pip is included with Python >=3.4 and >=2.7.9.

Install Pip

python -m pip install --upgrade pip setuptools wheel
sudo yum install python-pip

Show

pip show SomePackage #Detail about a package
pip show --files SomePackage
pip show numpy
---
Name: numpy
Version: 1.9.2
Location: c:\python27\lib\site-packages
Requires:

List

pip list # to list installed package
pip list --outdated #outdated package
numpy (1.9.2)
pip (1.5.6)
setuptools (7.0)

Upgrade

pip install --upgrade SomePackage

uninstall

pip uninstall SomePackage
pip search "query"

Documentation / Reference





Discover More
Card Puncher Data Processing
Anaconda - conda

conda is the package manager of conda It's a little bit the same than . The conda command is the primary interface for managing installations of various packages. It can: Query and search the Anaconda...
Card Puncher Data Processing
Ansible - Installation - Version 2.7 on Linux

How to install Ansible on Linux. using the OS package manager for Red Hat Enterprise Linux (TM), CentOS, Fedora, Debian, or Ubuntu, we recommend using Pip Ansible’s “raw” module don’t...
Card Puncher Data Processing
Aws - Cli

The cli of Aws is a client with pip Verification Set the credentials Verify
Card Puncher Data Processing
Code Shipping - (Repository | Registry)

A repository is a storage location where artifacts are stored. repository of codeartifact (ie library, package,... The repository can be: local to your local computer remote Example: Maven Central,...
Card Puncher Data Processing
Conda - Installation and configuration

How to install Conda Ubuntu The directory that Anaconda or Miniconda was installed into. Example: Open Anaconda Prompt (Anaconda Terminal) See Tab...
Card Puncher Data Processing
Python - setup.py

setup.py is a file found at the root directory of your project and serves two primary functions: configuration of the project command line interface for running various commands that relate to packaging...
Card Puncher Data Processing
Python - (Shipping|Packaging)

in Python Shipping in Python is defined in the setuptools framework, that uses pip and to distribute code in the wheel format See
Card Puncher Data Processing
Python - Dependency Management

See: syntax When you install a package, or declaring a dependency, you need to specify an package id that's known...
Card Puncher Data Processing
Python - EasyInstall

Easy_Install install regular package old tool ? EasyInstall install egg distribution ...
Card Puncher Data Processing
Python - Main (Entry Point)

In Python. In the . Example: To provide executable scripts,...



Share this page:
Follow us:
Task Runner