pip(Pip Installs Packages): is a command to install various python
packages.
some of the following pip commands for different packages of
python as well as pip upgrade.
pip upgrade
———————-
python -m pip install –upgrade pip
to check pip version
——————————–
c:\python34\scripts>pip –version [press enter, shows pip version]
to install scipy
————————
c:\python34>pip install scipy [press enter]
to list of python packages installed
——————————————————
c:\python34>pip list [press enter and it will lists all packages
installed in your machine]
to search pip packages
————————————
pip search <keyword>
e.g.: pip search mysql [press enter]
to install django
————————
c:\python34>python -m pip install Django
to install MYSQL
————————–
c:\python34>pip install MySQL-python
below an image for few pip installation syntax