以前因为win10下,pip安装太慢容易出错,所以离线下载许多包,现在想想自己好傻。可以通过修改下载源来解决问题。 1:windows 编辑C:\Users\用户名\AppData\Roaming\pip\pip.ini(没有则新建),写入以下内容: [global] index-url = htt ...
分类:
编程语言 时间:
2020-06-25 23:22:25
阅读次数:
74
# 知识点补充: # 1) None: a=None if a: print("非None") if a is not None: print("非None") # 2) global 的用法:在函数内引用 列表,集合,元组,字典的时候,不需要使用 global l=[1,2,3] s=set(l) ...
分类:
Web程序 时间:
2020-06-25 23:06:46
阅读次数:
67
命名空间(Namespaces) 所谓的Namespaces就是一个名字的集合,每个名字都映射到一个对应的函数对象上去,可以用Python里面的dict来理解(事实上也是这么实现的) 不同Namespaces里面可以有相同的变量名 多个Namespaces可以同时存在 当我们启动Python解释器的 ...
分类:
编程语言 时间:
2020-06-25 13:41:29
阅读次数:
55
git config --global user.name ''" git config --global user.email '''' ...
分类:
其他好文 时间:
2020-06-25 10:19:19
阅读次数:
92
这样在输入过一次密码之后,以后就不需要每次都输入密码了。touch ~/.git-credentials,git config --global credential.helper store ...
分类:
其他好文 时间:
2020-06-25 09:45:07
阅读次数:
71
这里的逻辑就是当调用第6,11,16....的时候给列表前面加一个</ul><ul class="news-list">,站长朋友可以根据本站的写法,做相应修改即可。 代码写法: <ul class="news-list"> {dede:list} [field:global name='autoi ...
分类:
其他好文 时间:
2020-06-24 16:27:43
阅读次数:
62
问题描述 在Ubuntu14里编写了一个很简单的文件批量重命名脚本 #!/bin/bash read -p "请输入50递增的起始数字:" startA echo "\n" read -p "请输入1递增的起始数字:" startB echo "\n" read -p "请输入1递增的结束数字:" ...
分类:
系统相关 时间:
2020-06-24 13:58:30
阅读次数:
136
Linux系统下 在用户目录下生成**.pip文件夹,进入文件夹,生成pip.conf**文件并添加: [global] index-url=http://mirrors.aliyun.com/pypi/simple/ https://pypi.tuna.tsinghua.edu.cn/simple ...
分类:
其他好文 时间:
2020-06-24 12:02:53
阅读次数:
220
/** * 批量更新xw_kefu的sonIds * @author jack */ function kefu_update_kefuids() { set_time_limit(0); global $db; $sql = "select id,name,p_id,is_lizhi from x ...
分类:
其他好文 时间:
2020-06-24 00:12:14
阅读次数:
72
GIL(Global Interpreter Lock,全局解释器锁) 引自原作者 GoT阳仔 注明: 这位大牛的文章实在是够味儿 引自原作者 二两 注明:作者写的通俗易懂,受益匪浅啊 维基百科 A global interpreter lock (GIL) is a mechanism used ...
分类:
其他好文 时间:
2020-06-23 22:58:47
阅读次数:
115