Python pip

10 Views
Published
python pip download install tutorial example explained

#python #pip #download

# ****************************************************************
# Python pip
# ****************************************************************
# pip = package manager for packages and modules from Python Package Index
#
# included for Python versions 3.4+
# open command prompt
#
# help: pip
# check: pip --version
# update: pip install --upgrade pip
# installed packages: pip list
# check outdated packages: pip list --outdated
# update a package: pip install "package name" --upgrade
# install a package: pip install "package name"
# ****************************************************************
Category
Bro Code
Tags
python, Python, python pip
Be the first to comment