Merge pull request #680 from rjurney/rjurney/readme-update
Update README.md to include 'build-essential' package in apt list and 3 common configuration options
This commit is contained in:
14
README.md
14
README.md
@@ -98,7 +98,7 @@ Before you install, make sure you have the following prerequisites:
|
|||||||
|
|
||||||
**On Ubuntu/Debian**
|
**On Ubuntu/Debian**
|
||||||
```
|
```
|
||||||
sudo apt-get install curl autoconf automake libtool pkg-config
|
sudo apt-get install -y curl build-essential autoconf automake libtool pkg-config
|
||||||
```
|
```
|
||||||
|
|
||||||
**On CentOS/RHEL**
|
**On CentOS/RHEL**
|
||||||
@@ -118,9 +118,19 @@ If you're using an M1 Mac, add `--disable-sse2` to the `./configure` command. Th
|
|||||||
```
|
```
|
||||||
git clone https://github.com/openvenues/libpostal
|
git clone https://github.com/openvenues/libpostal
|
||||||
cd libpostal
|
cd libpostal
|
||||||
|
|
||||||
./bootstrap.sh
|
./bootstrap.sh
|
||||||
|
|
||||||
|
# For Intel/AMD processors and the default model
|
||||||
./configure --datadir=[...some dir with a few GB of space...]
|
./configure --datadir=[...some dir with a few GB of space...]
|
||||||
make -j4
|
|
||||||
|
# For Apple / ARM cpus and the default model
|
||||||
|
./configure --datadir=[...some dir with a few GB of space...] --disable-sse2
|
||||||
|
|
||||||
|
# For the improved Senzing model:
|
||||||
|
./configure --datadir=[...some dir with a few GB of space...] MODEL=senzing
|
||||||
|
|
||||||
|
make -j8
|
||||||
sudo make install
|
sudo make install
|
||||||
|
|
||||||
# On Linux it's probably a good idea to run
|
# On Linux it's probably a good idea to run
|
||||||
|
|||||||
Reference in New Issue
Block a user