Skip to content Skip to sidebar Skip to footer

Error While Installing Python3 And Pip3 In Kali Linux

I have use the following commands at the time of installation: tar -xvf python-3.3.0.tgz cd python-3.3.0 ./configure make sudo make altinstall sudo apt-get install python3-pip Err

Solution 1:

  1. tar -xvf python-3.3.0.tgz

  2. cd python-3.3.0

  3. ./configure

  4. make

  5. sudo make altinstall

Next: Download get-pip.py form below URL. https://bootstrap.pypa.io/get-pip.py

  1. install this as a 'py' file. Go to Linux terminal type in

root# python get-pip.py

Assuming downloaded file is located in 'root'

Now it would work fine

Post a Comment for "Error While Installing Python3 And Pip3 In Kali Linux"