kali install pip (success)

Note: kali comes with python2 and python3 environments, so use the following methods to install directly
1. Install pip3:

curl -s https://bootstrap.pypa.io/get-pip.py | python3

insert image description here
Check version verification: pip3 -V
insert image description here
2. Install pip2

wget https://bootstrap.pypa.io/pip/2.6/get-pip.py
python2 get-pip.py

insert image description here
Check the version: pip2 -V
insert image description here

Guess you like

Origin blog.csdn.net/weixin_45852180/article/details/114693640