出现ModuleNotFoundError: No module named 'PIL'错误 解决方法: 运行命令:pip install pillow 如果运行该命令 显示Requirement already satisfied: Pillow in c:。。。 这时要先卸载pillow:pip ...
分类:
其他好文 时间:
2020-03-12 22:04:27
阅读次数:
91
错误信息: org.apache.catalina.LifecycleException: Protocol handler start failed at org.apache.catalina.connector.Connector.startInternal(Connector.java:10 ...
分类:
其他好文 时间:
2020-03-12 11:26:40
阅读次数:
98
MonkeyPatchWarning: Monkey-patching ssl after ssl has already been imported may lead to errors 调整一下导入顺序 import gevent from gevent import monkey monkey ...
分类:
其他好文 时间:
2020-03-11 09:11:53
阅读次数:
96
# EXAMPLE_NUM01age_of_oldboy = 56count = 0while count < 3: guess_age = int(input("guess age: ")) if guess_age == age_of_oldboy: print("yes,you got it" ...
分类:
其他好文 时间:
2020-03-10 18:42:13
阅读次数:
67
有时候我们把Yii2 版本进行升级之后 会报一些莫名其妙的错误,这次就遇到如下错误信息an Error occurred while handling another error:exception 'yii\web\HeadersAlreadySentException' with message... ...
分类:
其他好文 时间:
2020-03-09 09:15:44
阅读次数:
75
最近刚开始使用idea跑项目,遇到了端口被占用的问题:Address localhost:1099 is already in use 这种问题只需要找到端口被谁占用,然后关掉它就可以了。看了网上的解决办法,发现是被java.exe给占用了,有两种解决办法: 第一种,右击任务栏打开任务管理器,或使用 ...
分类:
其他好文 时间:
2020-03-06 12:40:32
阅读次数:
66
#pragma mark 监听滚动停止 // called on start of dragging (may require some time and or distance to move) // 开始拖动时调用(可能需要一些时间或距离才能移动) // 开始拖动时(手指在屏幕上) - (voi ...
分类:
其他好文 时间:
2020-03-05 23:41:43
阅读次数:
102
摘自:https://www.cnblogs.com/jamesvoid/p/12387602.html EventBus 及一些思考 EventBus 是 Android 开发的一种常用框架,其解耦的思维令人赞叹 从特性上来讲,其与 Android SDK中的BroadcastReceiver很像 ...
分类:
其他好文 时间:
2020-03-02 10:48:36
阅读次数:
67
一顿操作猛如虎,然后他给我来个这个 The instance of entity type '***' cannot be tracked because another instance with the same key value for {'ID'} is already being tra ...
分类:
其他好文 时间:
2020-02-28 20:47:03
阅读次数:
1035
application.yml 添加后两行配置,增加连接池数量data: mongodb: host: *** database: *** port: 27017 username: *** password: *** authenticationDatabase: *** connections- ...
分类:
数据库 时间:
2020-02-28 01:40:29
阅读次数:
168