Skip to content

Commit

Permalink
fixing some formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Burns committed Nov 3, 2021
1 parent 18a5686 commit b1f34ea
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions java-score-1/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
$ sudo apt install openjdk-11-jdk
```

* [Download and Install GoLang]
* Download and Install GoLang

In macOS:
In macOS:

```text
$ brew install go
```

In Linux \(Ubuntu 18.04\):
In Linux \(Ubuntu 18.04\):

```text
$sudo wget -c https://dl.google.com/go/go1.14.2.linux-amd64.tar.gz -O - | sudo tar -xz -C /usr/local
Expand All @@ -44,39 +44,40 @@ In Linux \(Ubuntu 18.04\):
go version
```

* [Download and Install Pyhton + VM]
* Download and Install Pyhton + VM

In macOS:
In macOS:

```text
brew install python3
pip3 install virtualenv setuptools wheel
```

In Linux \(Ubuntu 18.04\):
In Linux \(Ubuntu 18.04\):

```text
$ sudo apt install python3
$ pip3 install virtualenv setuptools wheel
```

* [Download and Install rocksdb] (http://rocksdb.org/)
* Download and Install rocksdb

In macOS:
In macOS:

```text
$ brew install rocksdb
```

In Linux \(Ubuntu 18.04\):
```text
git clone https://github.com/facebook/rocksdb.git
cd rocksdb

DEBUG_LEVEL=0 make shared_lib install-shared
```text
git clone https://github.com/facebook/rocksdb.git
cd rocksdb
DEBUG_LEVEL=0 make shared_lib install-shared
export LD_LIBRARY_PATH=/usr/local/lib
```
export LD_LIBRARY_PATH=/usr/local/lib
```


## Step 1. Source checkout
Expand Down

0 comments on commit b1f34ea

Please sign in to comment.