原文链接:(1条消息) 安装pip报错Traceback (most recent call last): File "get-pip.py", line 22318, in <module> main()_festone000的专栏-CSDN博客 首选说明,我全部注释了Ubuntu自带的源,全改成 ...
分类:
其他好文 时间:
2021-05-04 15:28:07
阅读次数:
0
springboot的核心(约定优于配置思想) 1.依赖起步 将具备某种功能的坐标打包到一起,并提供一些默认的功能。 2.自动配置 springboot 会将一些Bean注册到IOC容器,我们在需要的地方 使用@Autowired @Resource 等注解来使用它。 自动的表现形式指我们引入我想要 ...
分类:
编程语言 时间:
2021-05-03 12:33:33
阅读次数:
0
普通函数作用域 def outer(): outer_var = "i am is a outer var." def inner(): inner_var = "i am is a inner var." print(outer_var) print(inner_var) if __name__ ...
分类:
编程语言 时间:
2021-05-03 12:21:11
阅读次数:
0
pi表示在信息熵部分中有介绍,如下图中介绍 选择最小的那个0.3 #整个c4.5决策树的所有算法: import numpy as np import operator def creatDataSet(): """ outlook-> 0:sunny | 1:overcast | 2:rain t ...
分类:
其他好文 时间:
2021-05-03 12:13:28
阅读次数:
0
https://stackoverflow.com/questions/38461705/checkout-jenkins-pipeline-git-scm-with-credentials withCredentials([usernamePassword(credentialsId: '<cre ...
分类:
其他好文 时间:
2021-05-03 12:01:40
阅读次数:
0
public class oopDemo7 { public static void main(String[] args) { oopDemo71 oopDemo7 = new oopDemo71("罗hz"); System.out.println(oopDemo7.name); }} publ ...
分类:
其他好文 时间:
2021-05-03 11:56:18
阅读次数:
0
一、安装influxdb 1.安装和进入influxdb docker pull influxdb:1.7.9 sudo docker run -d -p 8083:8083 -p8086:8086 --expose 8090 --expose 8099 --name influxDbService ...
分类:
数据库 时间:
2021-05-03 11:55:57
阅读次数:
0
Vue router如何传参 要点总结:在vue-router中,有两大对象被挂载到了实例this;$route(只读、具备信息的对象);$router(具备功能的函数) 查询字符串:去哪里 ?<router-link :to="{name:'detail',query:{id:1}}"> xxx ...
分类:
其他好文 时间:
2021-05-03 11:55:38
阅读次数:
0
几种情况: 1.window可以 liunx乱码 检查文件写入文件夹时已经是乱码 解决方法:写入文件的时候转码 iconv('utf-8', 'gb2312','中文名称'); 2.window乱码 检查文件写入文件夹时已经是乱码 如果不是乱码 把代码传到服务器上面测试 是否正常能导出中文 如果还是 ...
分类:
其他好文 时间:
2021-05-03 11:47:58
阅读次数:
0
ssh登录服务器后 1 服务器上安装tmux 2 启动需要长期执行的目标程序时,先新建tmux会话 tmux new -s session_name 在这个会话里执行 3 这时就可以直接关闭ssh 4 需要重新登录时,ssh重新登录后, tmux ls查看所有会话 需要再次进入先前会话时,可以输入 ...
分类:
其他好文 时间:
2021-05-03 11:47:39
阅读次数:
0