yum install gcc 结果报错: [root@localhost ~]# yum install gcc Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * epel: ...
分类:
其他好文 时间:
2020-08-27 17:12:52
阅读次数:
174
alt_disk_install 命令 转自:https://www.ibm.com/support/knowledgecenter/ssw_aix_72/a_commands/alt_disk_install.html 用途: 安装具有 mksysb 安装映象的备用磁盘或将当前运行的系统克隆到备用 ...
分类:
其他好文 时间:
2020-08-27 17:10:31
阅读次数:
83
安装 linux nginx可以使用各平台的默认包来安装,这里介绍的是使用源码编译安装,包括具体的编译参数信息。 正式开始前,编译环境gcc g++ 开发库之类的需要提前装好,这里默认你已经装好。 ububtu平台编译环境可以使用以下指令: $ apt-get install build-essen ...
分类:
其他好文 时间:
2020-08-27 13:13:06
阅读次数:
60
一、创建vue-ts项目 现Vue CLI3经内置了TypeScript工具支持 npm install -g @vue/cli vue create vue-ts 二、基于类的组件 vue-class-component vue-property-decorator vue-class-compo ...
分类:
其他好文 时间:
2020-08-27 11:47:46
阅读次数:
89
写了个nginx编译安装脚本 版本:nginx-1.19.2 #!/bin/bash # 安装依赖关系包 yum -y install zlib zlib-devel openssl openssl-devel pcre pcre-devel gcc gcc-c++ autoconf automak ...
分类:
其他好文 时间:
2020-08-26 19:03:54
阅读次数:
73
先安装旧版本npm sudo apt install -y node 1 有些发行版是 sudo apt install -y npm 1 查看当前版本 npm -v 1 我的输出是 3.5.2 1 是非常老的版本 安装最新npm 可以通过旧版本npm直接安装新版npm sudo npm insta ...
分类:
系统相关 时间:
2020-08-26 18:56:53
阅读次数:
95
关闭防火墙 selinux systemctl stop firewalld.service #关闭防火墙 systemctl disable firewalld.service #关闭开机自启 setenforce 0 #临时解决selinux sed -i 's/^SELINUX=.*$/SEL ...
分类:
其他好文 时间:
2020-08-25 18:44:50
阅读次数:
60
pip install flask_script from flask import Flask from flask_script import Manager # 启动命令的管理类 app = Flask(__name__) # 创建manager管理类的对象 manager = Manager ...
分类:
其他好文 时间:
2020-08-25 18:31:01
阅读次数:
40
Linux pip安装速度慢(超时报错),为pip换源 mkdir -p ~/.pip/ vim pip.conf pip.conf中内容如下: [global] index-url=http://mirrors.aliyun.com/pypi/simple/ [install] trusted-h ...
分类:
系统相关 时间:
2020-08-25 18:29:01
阅读次数:
88
研发环境:node 1.创建项目 webgis 命令如下: vue create webgis 2.引入arcgis库 cd webgis npm install esri-loader@2.14.0 --save-dev 3. 编写自己的组件 4.引入标准的wms服务或者是说给标准的地图元数据 5 ...
分类:
其他好文 时间:
2020-08-24 16:56:07
阅读次数:
52