Easter79 Easter79
3年前
vue cli3 打包兼容Android 4.4
原文链接: vuecli3打包兼容Android4.4(https://my.oschina.net/ahaoboy/blog/4716369)已在Android4.4上跑通未能兼容ios9,会报一个typeerror,但是又没有其他任何信息,垃圾ios....在vue.config.js中配置相关依赖进行转换一般把第三方库
亚瑟 亚瑟
4年前
Linux环境部署go运行环境并启动项目
第一步、搭建Go生产环境1.下载包https://golang.org/dl/2.解压(有1.14.4版本了,tarzxvf后回有个go文件夹)cd/usr/local/wgethttps://dl.google.com/go/go1.13.6.linuxamd64.tar.gztarxfgo1.13.
Stella981 Stella981
3年前
Spark1.6.0 on Hadoop2.6.0单机伪分布式安装
1、Scala安装(1)解压文件ubuntu@Ubuntu:~$ sudo tar zxvf scala2.10.4.gz C /opt !(https://oscimg.oschina.net/oscnet/5fc13090fea3cd9b3e6829d482a1b5f43d9.png)(2) 环境变量配置ubunt
Stella981 Stella981
3年前
CentoS 7 LNMP 环境部署zabbix监控
本次实验,我们主要在centos7系统上部署zabbix监控,并实现监控交换机,监控Apache服务器,实现邮箱报警等操作LNMP环境构建软件包下载地址nginx1.8.0.tar.gzhttp://nginx.org/download/(https://www.oschina.net/action/GoToL
Stella981 Stella981
3年前
Python Excel Tutorial 指南
安装有几种不同的安装方法。下面是以xlrd为例的,其它二个库都是使用同样的步骤。从源码安装Linux系统:Python代码  !收藏代码(http://www.iteye.com/images/icon_star.png)(http://my.oschina.net/taisha/admin)1.$ tar 
Stella981 Stella981
3年前
Linux下安装redis
1:首先下载redis http://redis.io/download2: 需要Linux安装gcc依赖3:进行解压tarzxvfredis3.0.0rc2.tar.gz4:进入到redis3.0.0目录下,进行编译make  (如果make编译报错可直接用 makeMALLOClibc解决)5:进入到src
Stella981 Stella981
3年前
SpringBoot 项目的 Maven 多环境打包配置
1\.在pom.xml文件中配置<profiles<profile<iddev</id<activation<activeByDefaulttrue</activeByDefault</activation<properties
Stella981 Stella981
3年前
Jenkins+Ant自动布署war
一、jenkins配置在jenkins里面配置好ant版本构建完成后执行shell脚本重启tomcat二、build.xml配置1.从官网http://ant.apache.org/bindownload.cgi获取最新的tar(https://www.oschina.net/action/GoToLink?urlhttp%3A%2
Stella981 Stella981
3年前
Bochs安装
1:aptgetinstallbochs   在ubuntu中使用aptgetinstallbochs可以安装bochs此时bochs无法调试内核程序,只能充当虚拟机的角色运行内核或者操作系统2:如果想使用带调试功能的bochs安装方法为:    (1):下载bochs的linux源码tar包,地址:http://bo
桌面应用打包:pyinstaller | 京东物流技术团队
在使用python开发一些小工具时,如果其他人电脑中没有python环境或者没有安装相应的第三方库,是没办法运行的,而要求对方安装又不现实,尤其是对方不是技术人员,因此如何将一个独立的python程序,使它成为成为一个不用考虑环境,双击即可运行的桌面应用呢?使用pyinstaller打包是一个不错的选择。