Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. FROM ubuntu:18.04
  2. WORKDIR /home
  3.  
  4. RUN apt-get update
  5. RUN apt-get install -y git
  6. RUN apt-get install -y python3
  7. RUN apt-get install -y python3-pip
  8. RUN apt-get install -y emacs
  9. #RUN apt-get install -y tk-dev
  10. RUN apt-get install -y python3-tk
  11.  
  12.  
  13. RUN pip3 install tensorflow
  14. RUN pip3 install tensorboardX
  15. RUN pip3 install torch
  16. RUN pip3 install pandas
  17. RUN pip3 install pytz
  18. RUN pip3 install tqdm
  19. RUN pip3 install nltk
  20. RUN pip3 install gensim
  21.  
  22. RUN pip3 install -e git+git://github.com/WorksApplications/SudachiPy@develop#egg=SudachiPy
  23.  
  24. RUN apt-get update \
  25. && apt-get install -y locales \
  26. && locale-gen ja_JP.UTF-8 \
  27. && echo "export LANG=ja_JP.UTF-8" >> ~/.bashrc
  28.  
  29. COPY system.dic /home/SudachiPy/resources/system.dic
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement