开机自启动有三种方案:
1、把你的python程序随便放到C盘的一个目录下,然后把它的快捷方式放到windows开机自启动的文件夹(文件夹的位置在开始菜单里有)
2、Python打包成exe,放到启动文件夹
3、start.c打包成exe,让start.c调用你的Python程序
start.c
#include#include #include #include int main(void){ //setuid(0); system("python H:/code/client.py"); return 0;}