Kali 2020安装PIP并更新源(走过的那些坑)

一、安装环境

在这里插入图片描述

二、安装PIP

2.1 方法一(失败)

Tips:刚安装的kali2020需要更新apt源,否则网速慢、和出现如下情况:
在这里插入图片描述
》》更新apt源即可解决
操作可参考:Kali更新apt源

》》下载pip报错

apt-get install python-pip python-dev build-essential

Kali 2020安装PIP并更新源(走过的那些坑)_第1张图片

解决方法:
依次安装如下依赖
apt-get install python-pip-whl python-all-dev python-wheel
再次报错
在这里插入图片描述
》》需要安装python-pip-whl版本为18.1-5的版本才可
Kali 2020安装PIP并更新源(走过的那些坑)_第2张图片

》》再次安装即可
Kali 2020安装PIP并更新源(走过的那些坑)_第3张图片
》》安装成功
在这里插入图片描述

2.2 方法二(失败)

》》这里留存一个失败方法
kali2020中默认已经安装python2 / 3但是没有安装pip
Kali 2020安装PIP并更新源(走过的那些坑)_第4张图片
》》首先下载get-pip

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

Kali 2020安装PIP并更新源(走过的那些坑)_第5张图片
》》报错了,下方连接不上
Kali 2020安装PIP并更新源(走过的那些坑)_第6张图片

三、更新PIP源

3.1 国内镜像源

阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

3.2 临时更改

pip install scrapy -i https://pypi.tuna.tsinghua.edu.cn/simple

3.3 永久更改

创建~/.php/pip.conf文件夹,目录没有需要手动创建(.php为隐藏文件夹)
在这里插入图片描述
》》内容如下

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

Kali 2020安装PIP并更新源(走过的那些坑)_第7张图片
》》重启生效

你可能感兴趣的:(Kali)