Hi Dennis,
Here are step-by-step instructions of how I installed usearch on my mac,
1. download usearch binary (for Mac OSX) from
here (the binary usearch5.2.236_i86osx32 is now in my Downloads folder, I will work from there)
2. check I don't have usearch already installed
$ which usearch
3. add executable permissions to the usearch5.2.236_i86osx32 binary
$ chmod 755 ./usearch5.2.236_i86osx32
4. check it's working
$ ./usearch5.2.236_i86osx32 --version
usearch v5.2.236
5. create the symbolic link (I will keep the binary in my Downloads folder as an example)
$ pwd
/Users/jenya/Downloads
$ ln -s /Users/jenya/Downloads/usearch5.2.236_i86osx32 /Users/jenya/Downloads/usearch
6. The "/Users/jenya/Downloads" is not in my $PATH, so I add it (temporarily):
$ export PATH=$PATH:/Users/jenya/Downloads
7. test the symbolic link is working
$ which usearch
/Users/jenya/Downloads/usearch
$ usearch --version
usearch v5.2.236
You would want to move usearch5.2.236_i86osx32 to another directory (not Downloads), somewhere where you
store all your binaries. That directory should probably be in your $PATH already. If not, add it to ~/.bashrc (or
~/.bash_profile) (if you're using the bash script, check using $SHELL) by copying the same "export" command
in (6) above. Adding the directory using "export" from the shell as I did is only temporary to that shell instance.
Hope this helps,
Jenya
/Users/jenya/Downloads/usearch