2018-10-09 pywifi模块
发布网友
发布时间:2023-06-25 19:32
我来回答
共1个回答
热心网友
时间:2023-09-16 20:15
1、安装方法: pip3 install pywifi
2、安装位置: /usr/local/lib/python3.5/dist-packages/pywifi注意事项:用root账户执行程序,否则会提示PermissionError: [Errno 13] Permission denied: '/var/run/wpa_supplicant'
3、包内文件:
4、testandconnectwifi.py
错误信息1
profile=pywifi.profile() # 配置文件
TypeError: 'mole' 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
参考 Linux系统Wpa_supplicant用法小结