摘要:
Django1 1、Python工具 - pip 1、作用 Python的软件包管理器,有一些python包被集成到了pip中。只要被集成到pip中的包,都允许通过pip直接安装 2、安装 pip sudo apt install python-pip (python2) sudo apt inst 阅读全文
2019年4月14日
2019年3月14日
摘要:
一、 docker linux 网络命名空间 docker linux 网络命名空间 #ip netns list 查看网络命名空间 #ip netns delete test1 删除网络命名空间 #ip netns add test1 增加网络命名空间 test1 网络命名空间里边执行ip a或者 阅读全文
摘要:
Docker镜像介绍 什么是image docker 普通用户提权限(每次都需要sudo,麻烦) (1)添加一个docker组 #sudo groupadd docker (2)把普通用户添加到docker组里#sudo gpasswd -a vagrant docker (3)重启服务#sudo 阅读全文
摘要:
Docker笔记 菜鸟笔记:https://www.runoob.com/docker/centos-docker-install.html 1, https://gitlab-demo.com Docker官网:https://docs.docker.com/install/overview/ 有 阅读全文
2019年1月29日
摘要:
Ansible 自动化运维 一、ansible安装 (1)安装epel-release #yum -y install epel-release 下载epel-release包 # wget http://mirrors.sohu.com/fedora-epel/epel-release-lates 阅读全文
2018年10月5日
摘要:
JavaScript 知识6 一, String 对象 1,分隔字符串, 函数: split(seperator) 作用: 将字符串,通过seperator 拆分成一个数组; eg: var msg="张三丰|男|65|19000102"; var arr = msg.split("|"); con 阅读全文
2018年9月10日
摘要:
JavaScript知识5 <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script> /** * 判断指定年份是否为闰年 * 参数 ye 阅读全文
2018年9月5日
2018年9月3日
摘要:
Numpy 一,数据结构 数据类型: ndarray 创建一维的数组: vector = numpy.array([5,10,15,20]) 创建二维的数组: matrix = numpy.array([[5,10,15,20],[15,20,25,30]]) 查看数据的结构: vector.sha 阅读全文
2018年9月2日
摘要:
JavaScript 4 练习1 <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script> //1、从弹框中录入一个字符 var c = 阅读全文