摘要:
python使用requests模块时出现:"requests.exceptions.TooManyRedirects: Exceeded 30 redirects" 错误 错误提示是requests库有太多的重定向:超过了30个重定向。 解决方案就是仅请求不允许重新定向,因为重新定向中没有我需要的 阅读全文
摘要:
原因:服务器版本默认没有安装windows media player 使用 pip --no-cache-dir install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv_python 安装以后(--no-cache-dir表示不用缓存,- 阅读全文
摘要:
方法1: (function() {var a = new Date(); debugger; return new Date() - a > 100;}()) 不停地打断你,页面跳到source页面,阻止你看他代码,不断的产生不可回收的对象,占据你的内存,造成内存泄漏,没过多久浏览器就会卡顿 方法 阅读全文
摘要:
执行时提示如下错误:UnicodeDecodeError: 'gbk' codec can't decode byte 0xb4 in position 1762: illegal multibyte sequence 解决办法:pipreqs ./ --encoding=utf-8 阅读全文
摘要:
1.固定vue-router版本到3.0.7以下。 2.禁止全局路由错误处理打印,这个也是vue-router开发者给出的解决方案: import Router from 'vue-router' const originalPush = Router.prototype.push Router.p 阅读全文
摘要:
git config --global credential.helper store 阅读全文
摘要:
1.安装工具: pip install pipreqs 2.进入python项目主目录执行: pipreqs ./ 3.执行以上命令会在根目录生成requirements.txt 4.执行以下命令,可以安装所有依赖 pip install -r requirements.txt 更新: 如果提示“U 阅读全文
摘要:
1.国内的镜像有: 清华:https://pypi.tuna.tsinghua.edu.cn/simple阿里云:http://mirrors.aliyun.com/pypi/simple/中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/华中理工大学:h 阅读全文
摘要:
前提条件: 1.ubuntu安装了vsftpd,可以参考:https://www.cnblogs.com/xienb/p/9322805.html 2.安装专业版pycharm 步骤: 1.新建一个Pycharm项目,然后tool->Deployment->Configuration 2.Add-> 阅读全文