问题整理
itcast_xiaohuer
这个作者很懒,什么都没留下…
展开
-
jenkins构建权限问题
jenkins 权限问题原创 2022-08-16 17:09:05 · 474 阅读 · 0 评论 -
Flask UnsupportedOperation: not writable
报错:UnsupportedOperation: not writable参考解决:将def echo(message=None, file=None, nl=True, err=False, color=None):替换成:def echo(message=None, file=sys.stdout, nl=True, err=False, color=None):若问题没有解决,换IDE试试(注意你使用的IDE是否是spyder),基本上都可以解决。...原创 2022-04-08 14:11:44 · 682 阅读 · 0 评论 -
golang编译常见的问题
(1)github资源拉取过慢:解决:使用github代理查找ipaddress: https://www.ipaddress.com/ip-lookup输入:github.com 和 github.global.ssl.fastly.net设置:C:\Windows\System32\drivers\etc\hosts文件映射例如:140.82.112.4 github.com199.232.69.194 github.global.ssl.fastly.net配置生效:ipconf原创 2022-01-05 11:16:22 · 1193 阅读 · 0 评论 -
crontab定时调度无法执行shell脚本中python语句
问题描述:需求…不在描述。shell 脚本名 /home/abc/test.sh#!/bin/bash...python test.py...执行权限已经赋予crontab -l20 6 * * * /home/abc/test.sh 无法执行脚本中的python命令,然而手动可以执行。问题原因:crontab 不会加载path环境变量,所以手动的加载。解决办法:...原创 2020-04-18 10:39:20 · 505 阅读 · 1 评论