
īy default, Python packages installed locally on each system will be stored in one of the following directories, depending on which version of python packages you are looking for: Note: ~ is your home directory location, also equivalent to $HOME. Location of installed Python packages through Pipīy default Python packages installed through pip using the '-user' flag will be stored in one of the following locations in your home directory, depending on which version of python you installed the package for:
#Install pip3 kali install#

To upgrade a package use the command '$PIP install -upgrade -user '.
#Install pip3 kali update#
If you wish to update a Python module you can do so with the '-upgrade' flag Confirm this action by typing ‘y' then Enter key.

In this example using Python 2.7: 'pip install -user flask'.This example will install the flask package.To install a package use the command '$PIP install -user ' where $PIP is the Pip Version command in the above table.Flask is a package used for front-end Python web-development. In this example, flask will be installed and uninstalled.

Note: The command python3 and pip3 currently map to python3.6 and pip3.6, respectively.
