摘要:
报错 no python application found, check your startup logs for errors 原因 uwsgi配置不正确,本次错误是chdir 解决办法 修改正确chdir指定的目录 参考资料:前后端分离项目nginx和uwsgi常用配置参考
阅读全文
posted @ 2022-10-10 15:42
Z哎呀
阅读(296)
推荐(0)
编辑
摘要:
我们日常工作和学习中,都无可避免的参考一些英文网站或者一些优秀的外国文献,这时候谷歌翻译就显得尤为重要。现在忽然不能使用了,经过几番探索,可通过修改dns解析即可恢复,希望对大家有所帮助。 11.14更 可直接尝试使用142.250.4.90写入hosts,下面方法失效后,目前我都用这个,还不行,可
阅读全文
posted @ 2022-10-07 23:24
Z哎呀
阅读(636)
推荐(0)
编辑
摘要:
报错 ... File "D:\UserData\PycharmProject\pythonProject\私有项目\gsCoWeChat\venv\lib\site-packages\redis\client.py", line 1239, in <lambda> lambda: self._se
阅读全文
posted @ 2022-10-01 16:33
Z哎呀
阅读(770)
推荐(0)
编辑
摘要:
1. 报错 Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset: disabled) Active: failed (... 日志/var/log/mysqld.log ... mysqld:
阅读全文
posted @ 2022-10-01 15:34
Z哎呀
阅读(2175)
推荐(1)
编辑
摘要:
1. 错误如下: warning: /usr/local/src/mysql-community-server-8.0.30-1.el7.x86_64.rpm: Header V4 RSA/SHA256 Signature, key ID 3a79bd29: NOKEY error: Failed
阅读全文
posted @ 2022-10-01 00:49
Z哎呀
阅读(705)
推荐(0)
编辑
摘要:
报错如下: Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: mirrors.aliyun.com * extras: mirrors.aliyun.com * up
阅读全文
posted @ 2022-09-27 14:32
Z哎呀
阅读(1288)
推荐(0)
编辑
摘要:
将EventPolicy改为EventLoopPolicy。 同时注意自己文件的命名不要与uvloop重复了,笔者暂时没犯这种错误。 搜了全网都搜不到,难道没人用吗,幸好看了点源码还能看懂点,并且经实践也没什么问题。 为什么技术无法进步,很大原因是愿意分享的人太少了,闭门造车。
阅读全文
posted @ 2022-09-26 12:24
Z哎呀
阅读(125)
推荐(0)
编辑
摘要:
1. 原因 外网原因无法下载 2. 解决办法 下载sqlite-jdbc-3.39.2.0.jar,放这个目录下:C:\用户\你的用户名\AppData\Roaming\JetBrains\PyCharm2021.1\jdbc-drivers\Xerial SQLiteJDBC\3.39.2,3.3
阅读全文
posted @ 2022-09-21 15:03
Z哎呀
阅读(1353)
推荐(2)
编辑
摘要:
1. 原因 可能是浏览器已经提前退出,但此时selenium又尝试使用该浏览器而报错 2. 解决办法 排查代码是否在浏览器退出后,是否又引用了浏览器。
阅读全文
posted @ 2022-09-20 10:38
Z哎呀
阅读(1321)
推荐(0)
编辑
摘要:
1. 安装https支持包 pip3 install django-extensions pip3 install django-werkzeug-debugger-runserver pip3 install pyOpenSSL 2. 在settings中添加 INSTALLED_APPS = [
阅读全文
posted @ 2022-09-19 21:11
Z哎呀
阅读(930)
推荐(0)
编辑
// let homeEle = document.querySelector('body')
// homeEle.setAttribute('id', 'particles-js')
// /* ---- particles.js config ---- */
// particlesJS("particles-js", {
// "particles": {
// "number": {
// "value": 380,
// "density": {
// "enable": true,
// "value_area": 800
// }
// },
// "color": {
// "value": "#ffffff"
// },
// "shape": {
// "type": "circle",
// "stroke": {
// "width": 0,
// "color": "#000000"
// },
// "polygon": {
// "nb_sides": 5
// },
// "image": {
// "src": "img/github.svg",
// "width": 100,
// "height": 100
// }
// },
// "opacity": {
// "value": 0.5,
// "random": false,
// "anim": {
// "enable": false,
// "speed": 1,
// "opacity_min": 0.1,
// "sync": false
// }
// },
// "size": {
// "value": 3,
// "random": true,
// "anim": {
// "enable": false,
// "speed": 40,
// "size_min": 0.1,
// "sync": false
// }
// },
// "line_linked": {
// "enable": true,
// "distance": 150,
// "color": "#ffffff",
// "opacity": 0.4,
// "width": 1
// },
// "move": {
// "enable": true,
// "speed": 6,
// "direction": "none",
// "random": false,
// "straight": false,
// "out_mode": "out",
// "bounce": false,
// "attract": {
// "enable": false,
// "rotateX": 600,
// "rotateY": 1200
// }
// }
// },
// "interactivity": {
// "detect_on": "canvas",
// "events": {
// "onhover": {
// "enable": true,
// "mode": "grab"
// },
// "onclick": {
// "enable": true,
// "mode": "push"
// },
// "resize": true
// },
// "modes": {
// "grab": {
// "distance": 140,
// "line_linked": {
// "opacity": 1
// }
// },
// "bubble": {
// "distance": 400,
// "size": 40,
// "duration": 2,
// "opacity": 8,
// "speed": 3
// },
// "repulse": {
// "distance": 200,
// "duration": 0.4
// },
// "push": {
// "particles_nb": 4
// },
// "remove": {
// "particles_nb": 2
// }
// }
// },
// "retina_detect": true
// });
// var count_particles, stats, update;
// stats = new Stats;
// stats.setMode(0);
// stats.domElement.style.position = 'absolute';
// stats.domElement.style.left = '0px';
// stats.domElement.style.top = '0px';
// document.body.appendChild(stats.domElement);
// count_particles = document.querySelector('.js-count-particles');
// update = function() {
// stats.begin();
// stats.end();
// if (window.pJSDom[0].pJS.particles && window.pJSDom[0].pJS.particles.array) {
// count_particles.innerText = window.pJSDom[0].pJS.particles.array.length;
// }
// requestAnimationFrame(update);
// };
// requestAnimationFrame(update);