Skip to content

Commit 66a497d

Browse files
authored
Merge pull request #254 from kojix2/update_readme
Update README
2 parents 5367904 + 35dd887 commit 66a497d

File tree

1 file changed

+16
-15
lines changed

1 file changed

+16
-15
lines changed

README.md

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,39 +7,40 @@
77
IRuby is a Ruby kernel for [Jupyter project](http://try.jupyter.org/).
88

99
## Installation
10-
How to set up [ZeroMQ](http://zeromq.org/) depends on your environment.
11-
You can use one of the following libraries.
12-
* [ffi-rzmq](https://github.com/chuckremes/ffi-rzmq) and [libzmq](https://github.com/zeromq/libzmq) >= 3.2
13-
* [CZTop](https://gitlab.com/paddor/cztop) and [CZMQ](https://github.com/zeromq/czmq) >= 4.0.0
10+
11+
### Requirements
12+
* [Jupyter](https://jupyter.org)
13+
* One of the following is required
14+
* [ffi-rzmq](https://github.com/chuckremes/ffi-rzmq) and [libzmq](https://github.com/zeromq/libzmq)
15+
* [CZTop](https://gitlab.com/paddor/cztop) and [CZMQ](https://github.com/zeromq/czmq)
1416

1517
We recommend the [Pry](https://github.com/pry/pry) backend for full functionality.
1618

1719
### Ubuntu
1820
Install Jupyter with [Anaconda](https://www.anaconda.com/) (recommended).
1921

20-
#### Setup ZeroMQ on Ubuntu 16.04
21-
CZTop requires CZMQ >= 4.0.0 and ZMQ >= 4.2.0. The official packages for Ubuntu 16.04 don't satisfy these version requrements, so you need to install from source.
22+
#### 17.04 to 19.04
2223

2324
```shell
2425
sudo apt install libtool libffi-dev ruby ruby-dev make
25-
sudo apt install git libzmq-dev autoconf pkg-config
26-
git clone https://github.com/zeromq/czmq
27-
cd czmq
28-
./autogen.sh && ./configure && sudo make && sudo make install
26+
sudo apt install libzmq3-dev libczmq-dev
2927

30-
gem install cztop
28+
gem install ffi-rzmq
3129
gem install iruby --pre
3230
iruby register --force
3331
```
3432

35-
#### Setup ZeroMQ on Ubuntu 17.04 to 18.10
36-
Use official packages.
33+
#### 16.04
34+
CZTop requires CZMQ >= 4.0.0 and ZMQ >= 4.2.0. The official packages for Ubuntu 16.04 don't satisfy these version requrements, so you need to install from source.
3735

3836
```shell
3937
sudo apt install libtool libffi-dev ruby ruby-dev make
40-
sudo apt install libzmq3-dev libczmq-dev
38+
sudo apt install git libzmq-dev autoconf pkg-config
39+
git clone https://github.com/zeromq/czmq
40+
cd czmq
41+
./autogen.sh && ./configure && sudo make && sudo make install
4142

42-
gem install ffi-rzmq
43+
gem install cztop
4344
gem install iruby --pre
4445
iruby register --force
4546
```

0 commit comments

Comments
 (0)