Skip to content

Instantly share code, notes, and snippets.

@linuxd3v
Created March 9, 2024 00:38
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 linuxd3v/a31967df491530448ca6ec559879550b to your computer and use it in GitHub Desktop.
Save linuxd3v/a31967df491530448ca6ec559879550b to your computer and use it in GitHub Desktop.
sequitur-g2p
FROM ubuntu:20.04
RUN apt-get -yqq update && apt-get install -yqq g++ libopenblas-dev libopenblas-base swig git python-dev python3-pip python3-venv libblas-dev liblapack-dev libatlas-base-dev gfortran
RUN mkdir /app
WORKDIR /app
RUN python3 -m venv .venv && . .venv/bin/activate
RUN pip3 install numpy==1.17.4 six==1.11.0
RUN pip3 install git+https://github.com/sequitur-g2p/sequitur-g2p@master
CMD ["g2p.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment