1、安装方法:pip3 install pywifi
2、安装位置:/usr/local/lib/python3.5/dist-packages/pywifi注意事项:用root账户执行程序,否则会提示PermissionError: [Errno 13] Permission denied: '/var/run/wpa_supplicant'
3、包内文件:
pywifi内文件4、testandconnectwifi.py
错误信息1
profile=pywifi.profile() # 配置文件
TypeError: 'module' object is not callable
解决办法:profile=pywifi.Profile() profile的p大写
参考:https://blog.csdn.net/flhsxyz/article/details/79207180
5、const.py内容
# auth algorithms.
# AUTH_ALG_OPEN = 0
# AUTH_ALG_SHARED = 1
网友评论