2016-07-19 ruki
Install on windows Download xmake source codes Enter the source code directory Run install.bat Select the installed directory and enter into this directory Please wait some mintues Install from source codes on linux and macosx bash $ git clone git@github.com:waruqi/xmake.git $ cd ./xmake $ sudo ./install Install us 继续阅读 »
2014-12-18 MoreFreeze
How to install Freshman theme? please make sure you have already installed git tools and ruby tools(gem) $ gem install sass $ gem install jekyll $ git clone https://github.com/yulijia/freshman21.git 继续阅读 »
2014-01-06 Lingxian Kong
install和cp类似,都可以将文件/目录拷贝到指定的地点。但是,install允许你控制目标文件的属性。install通常用于程序的makefile(在RPM的spec里面也经常用到),使用它来将程序拷贝到目标(安装)目录。 常用参数: bash --backup[=CONTROL]:为每个已存在的目的地文件进行备份。 -b:类似 --backup,但不接受任何参数。 -d,--directory:所有参数都作为目录处理,而且会创建指定目录的所有主目录。 -D:创建前的所有主目录,然后将复制至 ;在第一种使用格式中有用。 -g,--group=组:自行设定所属组,而不是进程目前的所属组。 -m,--mode=模式:自 继续阅读 »
2015-05-24 Klaus Ma
Install dependencies: Install maven manually: wget http://mirrors.cnnic.cn/apache/maven/maven-3/3.3.3/binaries/apache-maven-3.3.3-bin.tar.gz tar zxvf apache-maven-3.3.3-bin.tar.gz mv apache-maven-3.3.3 /usr/local/apache-maven 继续阅读 »
2017-01-15 Lu Huang
This page is going to tell how to install tensorflow on ubuntu 16.04 from the github sources. I sugget you to use conda or miniconda as your python, then you can skip section 6: Create the pip package and install. 继续阅读 »
2016-01-18 Klaus Ma
Prepare: apt-get install -y bridge-utils // Remove Docker bridge iptables -t nat -F ifconfig docker0 down brctl delbr docker0 继续阅读 »
2015-02-04 veryyoung
今天突然想用markdown写博文,这样应该会方便不少。 开工 1.下载插件。 这里我选择了Markdown QuickTags 在官网看到 !This plugin hasn't been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress. 有点被惊呆 2.启用插件 下载完该插件之后,放入WordPress的plugins文件夹下,上传代码,然后再后台启用即 继续阅读 »
2015-11-17 Klaus Ma
docker-machine DOCKER_MACHINE=https://github.com/docker/machine/releases/download/v0.5.0/docker-machine_linux-amd64.zip curl -L $DOCKER_MACHINE > machine.zip && \ unzip machine.zip && \ rm machine.zip && \ mv docker-machine* /usr/local/bin 继续阅读 »
2017-06-01 Catsugar
记录一下Vue安装过程。 安装npm,vue cnpm install npm -g cnpm install vue 安装 vue-cli ``` cnpm install --global vue-cli 继续阅读 »
2017-01-01 Lu Huang
Kaldi是一个语音识别工具,使用C++开发,基于Apache 许可证,目的是为语音识别研究者提供。本文将介绍在线安装kaldi,为之后的离线安装kaldi做一个准备和基础。 1. 下载kaldi 目前kaldi是开源的,在github上可以clone;clone以后进入该目录,然后查看安装方法。 git clone https://github.com/kaldi-asr/kaldi.git cd kaldi/ cat INSTALL INSTALL文件指示如下: This is the official Kaldi INSTALL. Look also at INSTALL.md for the git mirror 继续阅读 »