Last active
December 7, 2021 02:13
-
-
Save akki2825/8014a2800eaf638eee2989974655c98f to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/sh | |
# Aeneas (python3.6+) installation that works only for MacOS. | |
echo "Cloning the py3-aeneas repository..." | |
git clone https://github.com/akki2825/aeneas | |
cd aeneas/ | |
echo "Installing system dependencies..." | |
brew install python3 | |
brew install python3-dev | |
brew install python3-pip | |
brew install ffmpeg | |
brew install espeak | |
brew install espeak-data | |
echo "Installing Python packages..." | |
sudo pip3 install numpy | |
sudo pip3 install py3-aeneas | |
echo "Compiling Python C/C++ extensions..." | |
sudo python3 setup.py build_ext --inplace | |
echo "Checking Setup..." | |
sudo python3 -m aeneas.diagnostics |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment