cjvt-srl-tagging/dockerfiles/python-java/Dockerfile

15 lines
201 B
Docker
Raw Permalink Normal View History

FROM ubuntu:16.04
RUN apt-get update
RUN apt-get install -y \
vim \
default-jdk \
python3 \
2019-02-28 22:37:47 +00:00
python3-pip
RUN apt-get install -y sshfs
2019-02-24 15:13:46 +00:00
RUN pip3 install lxml pandas sklearn
ENV PYTHONIOENCODING UTF-8