py文件转exe时包含paramiko模块出错解决方法
时间:2021-09-06 09:02:04|栏目:PHP代码|点击: 次
问题描述:
python代码中包含paramiko模块的远程登录ssh,在用pyInstaller转为exe时报错,
报错提示为“No handlers could be found for logger "paramiko.transport"
出错位置:
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
解决方案:
添加一行代码,记录传输日志。
代码如下:
paramiko.util.log_to_file("log.log") ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
后面有问题可以在log日志中查看。
参考:http://stackoverflow.com/questions/19152578/no-handlers-could-be-found-for-logger-paramiko
上一篇:PHP常用设计模式之委托设计模式
栏 目:PHP代码
本文标题:py文件转exe时包含paramiko模块出错解决方法
本文地址:http://www.codeinn.net/misctech/173048.html