Skip to content

Instantly share code, notes, and snippets.

@akki2825
Last active December 7, 2021 02:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akki2825/8014a2800eaf638eee2989974655c98f to your computer and use it in GitHub Desktop.
Save akki2825/8014a2800eaf638eee2989974655c98f to your computer and use it in GitHub Desktop.
#!/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