At first I was expecting pip to be automatically installed alongside python3.4 in Kali Linux. To my frustration, it was not.
You can try one of the following:
1. To install pip using apt. Type the following command in your terminal:
apt-get install python3-pip
However in my case, this command doesn't always work. In those cases, I would resort to the next way.
2. Install pip using the python script from Python Packaging Authority. Type the following commands in your terminal:
> curl -O https://bootstrap.pypa.io/get-pip.py
> python3.2 get-pip.py
get-pip.py is a bootstrapping script that enables users to install pip, setuptools, and wheel in Python environments that don't already have them.
Hope this helps!
Cheers!
You can try one of the following:
1. To install pip using apt. Type the following command in your terminal:
apt-get install python3-pip
However in my case, this command doesn't always work. In those cases, I would resort to the next way.
2. Install pip using the python script from Python Packaging Authority. Type the following commands in your terminal:
> curl -O https://bootstrap.pypa.io/get-pip.py
> python3.2 get-pip.py
get-pip.py is a bootstrapping script that enables users to install pip, setuptools, and wheel in Python environments that don't already have them.
Hope this helps!
Cheers!