windows 杀死进程

查看所有进程: tasklist

查看某一个进程: tasklist | findstr python

杀死进程:taskkill /F /PID python.exe

查看端口占用情况:netstat -ano 

查看某个端口占用情况:netstat -ano |  findstr 3306

原文地址:https://www.cnblogs.com/rgcLOVEyaya/p/10115193.html