From 9d56d739d8843d6c06631bee7f23ed3e7d21bc0b Mon Sep 17 00:00:00 2001 From: azhengzz <820108271@qq.com> Date: Thu, 4 Feb 2021 11:39:25 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BE=9D=E8=B5=96=E5=BA=93?= =?UTF-8?q?=E5=AF=BC=E5=87=BA=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ApiAutomationTest/export_package_info.bat | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ApiAutomationTest/export_package_info.bat b/ApiAutomationTest/export_package_info.bat index c57f7cf..a909ec2 100644 --- a/ApiAutomationTest/export_package_info.bat +++ b/ApiAutomationTest/export_package_info.bat @@ -12,9 +12,11 @@ if exist %pip% ( echo # 项目目录下Python第三方package依赖树信息 > %cd%\package_deptree_info.txt %pipdeptree% -a >> %cd%\package_deptree_info.txt ) else ( - echo ***********************【未检测到项目目录下Python解释器,使用环境变量下Python解释器】************ + echo ***********************【未检测到项目目录下Python解释器,使用系统环境变量目录下Python解释器】************ echo # 系统环境变量中Python第三方package信息 > %cd%\package_info.txt pip freeze >> %cd%\package_info.txt + echo # 系统环境变量中Python第三方package依赖树信息 > %cd%\package_deptree_info.txt + pipdeptree -a >> %cd%\package_deptree_info.txt ) echo ***********************【导出Python包信息完成】*********************** pause \ No newline at end of file