码迷,mamicode.com
首页 >  
搜索关键字:ansible install node    ( 68093个结果
leetcode-94. 二叉树的中序遍历
####我的菜鸡方法C++实现普通二叉树的中序遍历 /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode() : ...
分类:其他好文   时间:2021-07-26 16:33:12    阅读次数:0
leetcode-144-二叉树的前序遍历
不太明智的c++实现方法: 1 /** 2 * Definition for a binary tree node. 3 * struct TreeNode { 4 * int val; 5 * TreeNode *left; 6 * TreeNode *right; 7 * TreeNode() ...
分类:其他好文   时间:2021-07-26 16:32:32    阅读次数:0
Node.js版本管理工具nvm
1.介绍 nvm 是 nodejs 的版本管理工具,可以在一个环境中同时安装多个 nodejs 版本(和配套的 npm 版本),并随时切换。 好处是,开发调试不同 nodejs 应用变得更省心,随时切换所需要的版本。 2.安装 2.1 下载 链接 可下载以下版本: nvm-noinstall.zip ...
分类:Web程序   时间:2021-07-26 16:25:56    阅读次数:0
nginx安装前奏
安装nginx的前奏 安装依赖 yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel 创建一个文件夹 cd /usr/local mkdir nginx cd nginx 下载Nginx tar包 和 解压 wget ...
分类:其他好文   时间:2021-07-23 17:42:55    阅读次数:0
pytest使用整理
[TOP] pytest 常用插件(pip install 安装) pytest-html : 用于生成html格式的自动化测试报告 pytest-xdist: 用于多线程执行用例的插件 pytest-ordering:用于改变测试用例执行顺序 pytest-rerunfailures:失败的用例重 ...
分类:其他好文   时间:2021-07-22 17:34:46    阅读次数:0
K8s 通过 firewalld 放行端口
#对于etcd、controlplane 和 worker节点,运行以下命令: firewall-cmd --permanent --add-port=22/tcp firewall-cmd --permanent --add-port=80/tcp firewall-cmd --permanent ...
分类:其他好文   时间:2021-07-21 17:40:59    阅读次数:0
特征工程
2.1 数据集 目标 知道数据集的分为训练集和测试集 会使用sklearn的数据集 2.1.1 可用数据集 Kaggle网址:https://www.kaggle.com/datasets UCI数据集网址: http://archive.ics.uci.edu/ml/ scikit-learn网址 ...
分类:其他好文   时间:2021-07-19 16:53:01    阅读次数:0
Centos7(Linux系统)上安装JDK
在Linux系统上安装jdk,用于网站的部署,是发布一个java网站的第一步,很有必要 ...
分类:系统相关   时间:2021-07-19 16:48:17    阅读次数:0
centos gitlab部署
依赖安装 # 在CentOS系统上安装所需的依赖:ssh,防火墙,postfix(用于邮件通知) ,wget,以下这些命令也会打开系统防火墙中的HTTP和SSH端口访问。 yum install curl openssh-server openssh-clients postfix cronie - ...
分类:其他好文   时间:2021-07-19 16:46:25    阅读次数:0
记录k8s安装过程
yum -y install wget telnet net-tools lrzsz vim zip unzip 修改主机名 将master节点主机名修改为k8s-master01 node节点为k8s-node01 以这种命名规则命名即可 关闭防火墙 systemctl stop firewall ...
分类:其他好文   时间:2021-07-16 17:44:33    阅读次数:0
68093条   上一页 1 2 3 4 ... 6810 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!