按照kaldi/windows/INSTALL.md中的教程来。 首先,系统上要装有cmake,vs2017,git等 执行下面代码,安装编译openfst $ git clone https://github.com/kkm000/openfst.git $ cd openfst $ mkdir ...
1.git clone 2.打包 3.复制config.cfg到target目录,并修改zk地址 4.配置 supervisor zkui.conf 5.启动zookeeper 6.启动zkui 7.登录 localhost:9090 ...
分类:
系统相关 时间:
2020-01-20 12:52:46
阅读次数:
106
public int heightChecker(int[] heights) { int [] Heights=heights.clone(); int count=0; //标记有几个不同 Arrays.sort(heights); for(int i=0;i<heights.length;i+ ...
分类:
其他好文 时间:
2020-01-20 09:36:04
阅读次数:
61
pyenv和pipenv简单使用 一、安装pyenv# 安装pyenv Copy $ git clone git://github.com/yyuu/pyenv.git ~/.pyenv $ echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc $ ...
分类:
其他好文 时间:
2020-01-19 20:50:16
阅读次数:
121
将Centos7的内核升级到5.4.12后,VMware无法正常启动 git clone https://github.com/mkubecek/vmware-host-modules.git cd vmware-host-modules/ git checkout workstation-15.5 ...
分类:
Web程序 时间:
2020-01-18 21:30:34
阅读次数:
304
#yum -y install epel-releaseyum -y install python-pip python34-setuptoolseasy_install-3.4 pip #安装git clone --depth=1 git@github.com:amikey/12306.gitcd ...
分类:
其他好文 时间:
2020-01-18 19:35:04
阅读次数:
63
一般来说,都是通过idea操作的,但是又是也需要命令行这里介绍几个基础的 git init #将一个目录进行初始化,不然git不认识这个目录 git clone url #将远程文件下载到这个 git add 文件/文件夹 #将本地修改推送本地暂存区 git commit [-am]/-m "log ...
分类:
其他好文 时间:
2020-01-18 16:32:32
阅读次数:
52
Assume that you are on OS X, and you need headfiles for boost. headfiles will place to /usr/local/include/boost/ ...
分类:
其他好文 时间:
2020-01-17 18:54:26
阅读次数:
87
默认方式 安装k8s.io/code-generator$ go get -u k8s.io/code-generator/ ... 但是由于网络原因 这种情况一般实现不了 github方式安装 mkdir -p /home/gocode/src/k8s.io git clone https://g ...
分类:
其他好文 时间:
2020-01-17 15:07:03
阅读次数:
252
C#实现的对两个Table进行Merge,两表必须存在至少一个公共栏位作为连接项,否则连接就失去了意义。如下是对两个table进行Merge的详细代码: private void button1_Click(object sender, EventArgs e)//Button点击触发事件 { #r ...