Last active
May 28, 2019 19:41
-
-
Save ikegami-yukino/647eb9ae95d56a254a79 to your computer and use it in GitHub Desktop.
Install word2vec to Mac OS X later than 10.9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pushd . &> /dev/null | |
cd /tmp | |
git clone --depth=1 https://github.com/tmikolov/word2vec | |
cd word2vec | |
sed -i -e 's/malloc.h/stdlib.h/g' *.c | |
make | |
rm *.c* *.txt makefile LICENSE | |
cp * /usr/local/bin | |
popd &> /dev/null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment