我大部分时间都在航站楼里度过。我听说TermKit,我很好奇如何在 Ubuntu 上安装它。到目前为止,我还没有找到任何关于如何安装它的好说明。
答案1
首先,安装依赖项:
sudo apt-get install git libssl-dev
现在,下载、构建和安装节点、npm(节点的包管理器)和 TermKit 本身:
构建 Node.js:
trunk 有点不稳定,因此我们检查一下已知可以正常工作的节点版本:
cd ~
mkdir TermKitProj
cd TermKitProj
git clone https://github.com/joyent/node.git
cd node
git reset --hard 1b8dd65d6e3b82b6863e
./configure
make
sudo make install
cd ..
git clone http://github.com/isaacs/npm.git
cd npm
sudo make install
cd ..
构建 TermKit
git clone https://github.com/Floby/TermKit.git --recursive
cd TermKit/
npm install
好的,一切都安装好了。现在让我们启动它!
node Node/nodekit.js
你应该看到类似这样的内容:
18 Jun 20:12:45 - socket.io ready - accepting connections
server listening at http://localhost:2222
现在导航至http://本地主机:2222在 Chrome/Chromium 中(Firefox 无法运行,需要 webkit!)要再次启动它,请导航到 TermKitProj/TermKit 并再次运行“node Node/nodekit.js”。
谢谢本指南。