From 843128518af9d22fe4fc18209e92bde572f8f055 Mon Sep 17 00:00:00 2001 From: John Joo Date: Tue, 25 Jun 2019 11:20:21 -0700 Subject: [PATCH] Update env def for pip --ignore-installed --- Dockerfile_snippet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile_snippet.md b/Dockerfile_snippet.md index 27e36ae..878735b 100644 --- a/Dockerfile_snippet.md +++ b/Dockerfile_snippet.md @@ -1,7 +1,7 @@ Copy and paste the following Dockerfile snippet into the Dockerfile section for a new environment: ``` -RUN pip install imdbpy wget tmdbsimple tensorflow gensim stop_words +RUN pip install --ignore-installed imdbpy wget tmdbsimple tensorflow gensim stop_words RUN pip install git+https://github.com/dominodatalab/python-domino.git RUN echo 'if [ -z ${PYTHONPATH+x} ]; then export PYTHONPATH=${DOMINO_WORKING_DIR}; else export PYTHONPATH=${DOMINO_WORKING_DIR}:${PYTHONPATH}; fi' >> /home/ubuntu/.domino-defaults RUN R --no-save -e "install.packages(c('flexdashboard', 'rmarkdown'))"