摘要:
vue上服务器后因为插件原因报错: AttributeError: ‘str‘ object has no attribute ‘decode‘ 解决办法: str.encode('utf-8').decode('utf-8') 阅读全文
posted @ 2022-09-14 18:14
门徒21
阅读(26)
评论(0)
推荐(0)
摘要:
nohup python manage.py runserver 0.0.0.0:80 > run.log 2>&1 &通过ps -ef |grep python获取Python进程号然后kill - 9进程号查看进程: ps -ef|grep "python"杀死进程: kill -9 3435 阅读全文
posted @ 2022-09-14 18:10
门徒21
阅读(42)
评论(0)
推荐(0)