摘要:
先安装python扩展 然后点ctrl+shift+p搜索python:select,选择解析器(或者也可以直接点左下方的) 然后360报毒了,允许通过,然后选择你想要的解释器 然后就好了 20230816 文章目录在VSCode中添加本地Python解释器 Python解释器简介为什么要在VSCo 阅读全文
摘要:
1、新建环境出现问题的解决记录 ModuleNotFoundError: No module named 'distutils' Traceback (most recent call last): File "C:\Users\CXM\AppData\Local\Temp\tmppycharm-m 阅读全文
摘要:
安装jsonpath时报错: ERROR: Could not find a version that satisfies the requirement jsonpath (from versions: none)ERROR: No matching distribution found for 阅读全文
摘要:
【一】python知识补充pip安装包工具(1)pip换源默认pip是外网的地址 https://python.org/ 国内访问资源可能会访问不到 所以要进行换源(pip换源) (2)临时换源 pip install 模块名-i 镜像源地址 pip install lxml -i https:// 阅读全文
摘要:
pytest运行报错:UnicodeDecodeError: ‘gbk’ codec can’t decode byte 0xaf in position 82: illegal multibyte sequence D:\Python\environment\python3.9.7\python3 阅读全文
摘要:
对于安全性较高的网站,通常会用到sign签名来实现多重验证,常见的有: sign对加密密钥验证(后面会介绍)通过sign对请求重放验证(该文章重点介绍sign请求重放验证)在渗透测试中,重放数据包是非常重要的测试条件,大多数功能都需要通过重放来测试,像爆破、sql注入、篡改参数实现越权等等;而开发者 阅读全文