当前位置: 首页 > 工具软件 > PyChecker > 使用案例 >

windows下安装使用pychecker

盖马鲁
2023-12-01

转载自:http://www.xuebuyuan.com/1434056.html


参考:http://fateful.blog.sohu.com/194713593.html

看python的时候,讲到测试!安装了一下pychecker:

1、下载pychecker包:http://sourceforge.net/projects/pychecker/

2、cmd命令行进入解压文件夹,运行命令python setup.py install;

3、在python的安装目录\Scripts下出现pychecker.bat文件,将Scripts目录加到Path环境变量中,

运行命令行,pychecker file1.py file2.py即可进行python文件检查;

如果在python文件中使用,需要from pychecker import checker 或者 import pychecker.checker,不过我没尝试

pyLint的安装使用差不多!import pylint.lint


 类似资料: