命令行开启wsl并安装调试python项目

官方文档:https://docs.microsoft.com/zh-cn/windows/wsl/install-win10

生成requirements.txt文件

pip freeze > requirements.txt

安装requirements.txt依赖

pip install -r requirements.txt

和allure整合:https://testerhome.com/articles/17504

问题:

修改fork库的名称后,pull 拉取不到代码。如何在不影响当前代码的情况下,pull到代码。

解决:

使用命令 git remote set-url origin 地址
解决。

原文地址:https://www.cnblogs.com/slqt/p/14542415.html