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. 继续阅读 »
2015-08-29 Klaus Ma
Here is my way on how to change the selected item colour on Ubuntu (14.04); the steps are as follows: To start off, we need to open dconf-editor (Press Alt+F2 and type dconf-editor followed by the enter key). Navigate to the following path: org > gnome > desktop > interface. Find the key called "gtk-color-scheme" and 继续阅读 »
2017-02-06 Lu Huang
在很多科研单位和企业研发部门,服务器是极少被允许连外网的,一般情况下只可以通过内网里的机器访问服务器。由于自己的经历,我曾经接触过这样一台服务器,由于有8张Tesla K80的GPU,我很想在上面安装一个kladi。因此,这里的离线指的是服务器不能访问外网,或者服务器压根不能上网。我下面的操作是在和服务器在同一内网下的Windows机器上进行的,读者也可以直接在服务器上操作(不过一般很难得到许可)。 在阅读本文之前,建议先阅读一下我之前写的文章:ubuntu 16.04在线安装kaldi,以熟悉kaldi安装的大概过程。 1. 下载kaldi并上传 从kaldi在github的代码仓库(https://github.com/k 继续阅读 »
2014-06-05 summer
简介 随着mysql被oracle收购之后,很多企业和机构都纷纷选择逃离mysql。而mysql之父在原mysql的基础上开源了一个新的数据库Mariadb。MariaDB数据库管理系统是MySQL的一个分支,主要由开源社区在维护,采用GPL授权许可。MariaDB的目的是完全兼容MySQL,包括API和命令行,使之能轻松成为MySQL的代替品。 继续阅读 »
2014-08-19 ALEX LIN
首先安装fcitx输入法。 sudo apt-get install fcitx fcitx-config-gtk fcitx-sunpinyin fcitx-googlepinyin fcitx-module-cloudpinyin sudo apt-get install fcitx-table-all sudo apt-get install im-switch im-switch -s fcitx -z default 可以选择安装搜狗拼音输入法。下载地址 安装C/C++的编译环境和gtk libgtk2.0-dev sudo apt-get install build-essential libgtk2.0 继续阅读 »
2015-09-18 wansong
nodejs安装 nodejs使用Linux Binaries安装 $ wget https://nodejs.org/dist/v4.1.0/node-v4.1.0.tar.gz $ tar -zvxf node-v4.1.0.tar.gz $ ./configure $ make $ [sudo] make install 继续阅读 »
2017-06-27 Renfei Yu
在发布到github pages 时,需要本地预览效果,这时需要安装本的jekyll环境,这里说明安装过程中的主要步骤以及相应的解决办法。 Install CURL apt-get install curl Install RVM 继续阅读 »
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 继续阅读 »
2018-06-21 Vaniot
安装Redis及启动 安装Redis shell apt-get install redis-server 启动服务 shell /etc/init.d/redis-server start 连接服务 shell redis-cli 查看redis的密码 shell config get requirepass 设置redis密码 shell config set requirepass 12345 进入redis shell redis-cli -h 127.0.0.1 -p 6379 -a 12345 php安装redis扩展 继续阅读 »
2017-02-08 Lu Huang
昨天在用sudo apt-get install XXX安装软件包的时候出现了下面所示的错误。 shell E: Sub-process /usr/bin/dpkg returned an error code (1) 继续阅读 »