码迷,mamicode.com
首页 >  
搜索关键字:virt install    ( 41915个结果
Linux下使用ntpdate进行时间同步
1、安装ntpdate,执行以下命令 # 安装utpdate命令 yum install ntpdate -y 2、手工同步网络时间,执行以下命令,将从time.nist.gov同步时间 ntpdate 0.asia.pool.ntp.org 若上面的时间服务器不可用,也可以选择以下服务器同步时间 ...
分类:系统相关   时间:2020-12-31 12:13:31    阅读次数:0
课程详情页之前台
详情页组件 依赖:在luffycity目录下的命令 1 >: cnpm install vue-video-player--save 配置:main.js 12345 // vue-video播放器require('video.js/dist/video-js.css');require('vue- ...
分类:其他好文   时间:2020-12-31 12:07:45    阅读次数:0
BeautifulSoup4 print() 输出中文乱码解决方法
urllib.request 返回的数据需要解码,如 网站返回的是GBK编码数据. 需要调用decode("gbk") 此时输出不会乱码. with urllib.request.urlopen(url, context=context) as response: html = response.r ...
分类:其他好文   时间:2020-12-31 11:55:54    阅读次数:0
(一)创建vue项目
1.安装Node.js(省略) 2.安装vue npm install vue 3.全局安装vue-cli脚手架 npm install -g vue-cli 4.创建vue项目(过程根据实际需要填写或选择,也可一路默认) vue init webpack front 5.启动项目 npm run ...
分类:其他好文   时间:2020-12-31 11:51:40    阅读次数:0
Linux服务器上crontab命令与配置
crontab命令与配置 防止忘记,这里记录一下定时任务crontab的一些命令 crontab基本操作 1.安装crontabs服务 yum install crontabs 2.设置开机自启 systemctl enable crond 3.运行服务 systemctl start crond ...
分类:系统相关   时间:2020-12-30 11:31:39    阅读次数:0
阿里云服务器搭建wordpress博客
1、有一个阿里云服务器 2、安装宝塔linux: yum install -y wget && wget -O install.sh http://download.bt.cn/install/install.sh && sh install.sh 3、下载wordpress:官网下载https:/ ...
分类:其他好文   时间:2020-12-30 11:30:02    阅读次数:0
php源代码安装常见错误与解决办法分享
错误:configure: error: libevent >= 1.4.11 could not be found解决:yum -y install libevent libevent-devel错误:configure: error: Please reinstall the mysql dis ...
分类:Web程序   时间:2020-12-30 11:22:18    阅读次数:0
ubuntu 更新python,从3.5更新到3.7
查看 python3版本 python3 --version 安装python3.7 sudo apt-get install python3.7 报错如下: Reading package lists... Done Building dependency tree Reading state i ...
分类:编程语言   时间:2020-12-30 10:44:34    阅读次数:0
[python] pip使用命令
根据requirements.txt文件安装模块 pip install -r requirements.txt 安装/卸载 模块 pip install <module> # 下载某个模块 pip install <module>== <version> # 指定下载的版本 pip uninsta ...
分类:编程语言   时间:2020-12-29 11:40:27    阅读次数:0
npm包的发布流程
1.申请一个npm包的账号和密码; npm adduser 2.测试时候取得账号;npm whoami 3.在package.json的所在目录运行;npm publish; 4.打开浏览器,访问http://search.npmjs.org/ 可以找到刚刚发布的包; 5.使用npm的包;npm i ...
分类:其他好文   时间:2020-12-29 11:25:26    阅读次数:0
41915条   上一页 1 ... 83 84 85 86 87 ... 4192 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!