Skip to content

Instantly share code, notes, and snippets.

@flying-sheep
Forked from pwl/Dockerfile
Last active February 24, 2018 01:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save flying-sheep/0e003ae3398dd543638955a55c031c8d to your computer and use it in GitHub Desktop.
Save flying-sheep/0e003ae3398dd543638955a55c031c8d to your computer and use it in GitHub Desktop.
scanpy-locale-setup
FROM ubuntu:17.10
ENV LANG C.UTF-8
RUN apt-get update && \
apt-get install -y python3 python3-pip libxml2-dev zlib1g-dev && \
apt-get clean
RUN apt-get install -y python3-numpy # not necessary in scanpy 0.2.9.2/0.2.10
RUN python3 --version
RUN pip3 --version
RUN pip3 install scanpy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment