使用Python写接口压测1软件安装

每一个新的东西,学习都是从软件安装开始,第一个章节老生常谈,但不是所有同学都是解除过得,所以从零开始吧!

官网
bash 复制代码
https://www.python.org/
下载-我是windows,下载其他根据自己系统;
点击下载
安装
下一步
简单小指令
bash 复制代码
# pip更新到最新版本
python -m pip install --upgrade pip
# 查看版本
python --version
Python国内镜像-下载依赖买的可以使用镜像
bash 复制代码
清华大学:
https://pypi.tuna.tsinghua.edu.cn/simple/
豆瓣(douban):
https://pypi.douban.com/simple/
阿里云: 
https://mirrors.aliyun.com/pypi/simple/
中国科技大学: 
https://pypi.mirrors.ustc.edu.cn/simple/

###### 比方说使用镜像安装requests库
pip install -i https://pypi.douban.com/simple requests 
修改系统默认镜像源
bash 复制代码
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
pip版本降到指定版本
bash 复制代码
python -m pip install pip==20.2.1 
相关推荐
小九九的爸爸16 小时前
前端想要入门Agent开发,要具备哪些Python基础?
python·agent·ai编程
阿耶同学17 小时前
手把手教你用 LangGraph 搭建三层嵌套 Agent 架构
python·程序员
花酒锄作田1 天前
Pydantic校验配置文件
python
hboot1 天前
AI工程师第四课 - 深度学习入门
pytorch·python·神经网络
ZhengEnCi2 天前
P2M-Matplotlib折线图完全指南-从数据可视化到趋势分析的Python绘图利器
python·matlab·数据可视化
ZhengEnCi2 天前
P2L-Matplotlib饼图完全指南-从数据可视化到图表定制的Python绘图利器
python·matlab
曲幽2 天前
你的REST接口还在“过度投喂”数据吗?——FastAPI + GraphQL实战避坑指南
python·fastapi·web·graphql·route·cors·rest·strawberry
用户8358086187912 天前
基于 Self-RAG 与列表级重排序的进阶 RAG 系统设计与实现
python
Warson_L3 天前
Python `Annotated` 与 LangGraph Reducer 学习笔记
python
韩师傅3 天前
海天线算法的前世今生
python·计算机视觉