摘要: ##问题现状 pip install attrs 安装出现报错 切换国内下载源安装,依然报错 ##解决方法: pip3 install attrs==19.2.0 -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliy 阅读全文
posted @ 2020-12-15 21:47 Harry_666 阅读(836) 评论(0) 推荐(0) 编辑
摘要: ##前言 pip下载的安装包都是在国外的pipy服务器上面,又因国内某种墙的策略,导致速度非常的慢,甚至无法访问。 于是国内很多的企业和爱好者纷纷搭建自己的服务器,定时从pypi上拉起所有的镜像文件。然后我们只需要通过国内搭建的服务上下载便能实现正常速度。 另外一种方式是通过代理绕过墙实现加速下载。 阅读全文
posted @ 2020-12-15 21:34 Harry_666 阅读(193) 评论(0) 推荐(0) 编辑
摘要: javascript学习笔记 // 打印 console.log('hello world') console.error('this is an error') console.warn('this is a warn') //var, let, const 声明变量 const age = 30 阅读全文
posted @ 2020-12-15 21:02 Harry_666 阅读(96) 评论(0) 推荐(0) 编辑