Merge pull request #557 from gatorjuice/slightly_update_mac_install_instructions

Modyfied install steps with notes that worked for me.
This commit is contained in:
Al B
2025-02-08 12:26:25 -05:00
committed by GitHub

View File

@@ -127,18 +127,23 @@ If you're using an M1 Mac, add `--disable-sse2` to the `./configure` command. Th
git clone https://github.com/openvenues/libpostal
cd libpostal
# skip if installing for the first time
make distclean
./bootstrap.sh
# omit --datadir flag to install data in current directory
./configure --datadir=[...some dir with a few GB of space where a "libpostal" directory exists or can be created/modified...]
make -j4
# 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 where a "libpostal" directory exists or can be created/modified...]
# For Apple / ARM cpus and the default model
./configure --datadir=[...some dir with a few GB of space...] --disable-sse2
./configure --datadir=[...some dir with a few GB of space where a "libpostal" directory exists or can be created/modified...] --disable-sse2
# For the improved Senzing model:
./configure --datadir=[...some dir with a few GB of space...] MODEL=senzing
./configure --datadir=[...some dir with a few GB of space where a "libpostal" directory exists or can be created/modified...] MODEL=senzing
make -j8
sudo make install