-
-
Save pwl/a26726fda94ac7f4cbfb57e4fe98bf28 to your computer and use it in GitHub Desktop.
scanpy-locale-setup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:17.10 | |
RUN apt-get update && \ | |
apt-get install -y python3 python3-pip locales && \ | |
apt-get clean | |
RUN pip3 install numpy | |
RUN python3 --version | |
RUN pip3 --version | |
RUN locale-gen en_US.UTF-8 | |
ENV LC_ALL en_US.UTF-8 | |
RUN pip3 install scanpy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment