其他分享
首页 > 其他分享> > CTF:pip安装pwntools最新教程(解决旧版本pip升级问题)

CTF:pip安装pwntools最新教程(解决旧版本pip升级问题)

作者:互联网

首先从使用命令

$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py   # 下载安装脚本
$ sudo python get-pip.py    # 运行安装脚本

这时候一般会这样的错误(下图)。由于我们不知晓pip的版本,部分pip无法使用-v或者-version参数查看版本,这时候我们观察到提示Please use https://bootstrap.pypa.io/pip/2.7/get-pip.py instead.
在这里插入图片描述

我们现在看到提示的网站,把那个脚本copy下来放到本地用python跑,保存为get-pip.py
复制全部windows Linux系统使用control+A,Mac系统使用command+A
在这里插入图片描述
现在注意提示:

DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support pip 21.0 will remove support for this functionality.
Looking in indexes: http://pypi.mirrors.ustc.edu.cn/simple
WARNING: The repository located at pypi.mirrors.ustc.edu.cn is not a trusted or secure host and is being ignored. If this repository is available via HTTPS we recommend you use HTTPS instead, otherwise you may silence this warning and allow it anyway with '--trusted-host pypi.mirrors.ustc.edu.cn'.
ERROR: Could not find a version that satisfies the requirement pwntools (from versions: none)
ERROR: No matching distribution found for pwntools

下面使用命令安装pwntools

pip install pwntools --trusted-host http://pypi.mirrors.ustc.edu.cn/simple

标签:Python,get,pwntools,py,旧版本,edu,pip
来源: https://blog.csdn.net/qq_43332010/article/details/118783883