To try out Life123 on mybinder.org, use this link !
Note: a bug in JupyterLab prevents the viewing of the graphics in xyz.log.html
files.
However, most notebooks also include embedded visualizations with plotly
that show correctly.
And the log files can be viewed on the Experiments page.
Info on mybinder.org
In the box below is the log from starting version Beta 11.3 of Life123
It's now using python 3.8, as specified in environment.yml
It turned out necessary to copy over all other entries from requirements.txt
; otherwise,
the deployment was using an older version of JupyterLab, and worse yet it didn't install NumPy.
It seems that requirements.txt
may be ignored if environment.yml
is present (though
apparently not documented.)
However, jupytext==1.14.1
could not be included, or an error would occur.
Upon startup, a message pops up to recommend including "jupyterlab-dash" in the build, but agreeing to it leads to error;
it seems ok to just Cancel.
Example of environment.yml from the mybinder.org documentation.
Log from starting version Beta 11.3 of Life123 :Waiting for build to start... Picked Git content provider. Cloning into '/tmp/repo2docker646f22rp'... HEAD is now at 9e647ef Merge pull request #25 from BrainAnnex/dev Building conda environment for python=3.8Using CondaBuildPack builder Building conda environment for python=3.8Building conda environment for python=3.8Step 1/51 : FROM buildpack-deps:bionic ---> 256bc5b8157d Step 2/51 : ENV DEBIAN_FRONTEND=noninteractive ---> Using cache ---> 19741efcdd35 Step 3/51 : RUN apt-get -qq update && apt-get -qq install --yes --no-install-recommends locales > /dev/null && apt-get -qq purge && apt-get -qq clean && rm -rf /var/lib/apt/lists/* ---> Using cache ---> 47511249e230 Step 4/51 : RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen ---> Using cache ---> 54e9a96932e0 Step 5/51 : ENV LC_ALL en_US.UTF-8 ---> Using cache ---> ab8bb5cd83b3 Step 6/51 : ENV LANG en_US.UTF-8 ---> Using cache ---> 10fedd46281b Step 7/51 : ENV LANGUAGE en_US.UTF-8 ---> Using cache ---> 676ea1367bc4 Step 8/51 : ENV SHELL /bin/bash ---> Using cache ---> fa7c95fb602c Step 9/51 : ARG NB_USER ---> Using cache ---> ef0eea550fa8 Step 10/51 : ARG NB_UID ---> Using cache ---> 017f8e0a4e95 Step 11/51 : ENV USER ${NB_USER} ---> Using cache ---> c84a13ee735a Step 12/51 : ENV HOME /home/${NB_USER} ---> Using cache ---> 72109075cf65 Step 13/51 : RUN groupadd --gid ${NB_UID} ${NB_USER} && useradd --comment "Default user" --create-home --gid ${NB_UID} --no-log-init --shell /bin/bash --uid ${NB_UID} ${NB_USER} ---> Using cache ---> beb4d01f16fb Step 14/51 : RUN apt-get -qq update && apt-get -qq install --yes --no-install-recommends less unzip > /dev/null && apt-get -qq purge && apt-get -qq clean && rm -rf /var/lib/apt/lists/* ---> Using cache ---> dcfc287ce8c3 Step 15/51 : EXPOSE 8888 ---> Using cache ---> ddbfe5b7f890 Step 16/51 : ENV APP_BASE /srv ---> Using cache ---> 507fec3f8f72 Step 17/51 : ENV CONDA_DIR ${APP_BASE}/conda ---> Using cache ---> 9c26a80873f1 Step 18/51 : ENV NB_PYTHON_PREFIX ${CONDA_DIR}/envs/notebook ---> Using cache ---> fbd4d9305c26 Step 19/51 : ENV NPM_DIR ${APP_BASE}/npm ---> Using cache ---> f6502d1ba324 Step 20/51 : ENV NPM_CONFIG_GLOBALCONFIG ${NPM_DIR}/npmrc ---> Using cache ---> 7b120c46a311 Step 21/51 : ENV NB_ENVIRONMENT_FILE /tmp/env/environment.lock ---> Using cache ---> 8d3412bb12b1 Step 22/51 : ENV MAMBA_ROOT_PREFIX ${CONDA_DIR} ---> Using cache ---> 170635870048 Step 23/51 : ENV MAMBA_EXE ${CONDA_DIR}/bin/mamba ---> Using cache ---> b6d21e69014e Step 24/51 : ENV KERNEL_PYTHON_PREFIX ${NB_PYTHON_PREFIX} ---> Using cache ---> 771753b439ec Step 25/51 : ENV PATH ${NB_PYTHON_PREFIX}/bin:${CONDA_DIR}/bin:${NPM_DIR}/bin:${PATH} ---> Using cache ---> dfe544e3ba55 Step 26/51 : COPY --chown=1000:1000 build_script_files/-2fusr-2flib-2fpython3-2e9-2fsite-2dpackages-2frepo2docker-2fbuildpacks-2fconda-2factivate-2dconda-2esh-e9bee0 /etc/profile.d/activate-conda.sh ---> Using cache ---> 807cd7d7d0f0 Step 27/51 : COPY --chown=1000:1000 build_script_files/-2fusr-2flib-2fpython3-2e9-2fsite-2dpackages-2frepo2docker-2fbuildpacks-2fconda-2fenvironment-2epy-2d3-2e8-2elock-e2192b /tmp/env/environment.lock ---> Using cache ---> cfa56068f05b Step 28/51 : COPY --chown=1000:1000 build_script_files/-2fusr-2flib-2fpython3-2e9-2fsite-2dpackages-2frepo2docker-2fbuildpacks-2fconda-2finstall-2dbase-2denv-2ebash-41d468 /tmp/install-base-env.bash ---> Using cache ---> 2d9be536b1cf Step 29/51 : RUN TIMEFORMAT='time: %3R' bash -c 'time /tmp/install-base-env.bash' && rm -rf /tmp/install-base-env.bash /tmp/env ---> Using cache ---> 9b3115d2310d Step 30/51 : RUN mkdir -p ${NPM_DIR} && chown -R ${NB_USER}:${NB_USER} ${NPM_DIR} ---> Using cache ---> 61866844ab8c Step 31/51 : USER root ---> Using cache ---> 5bcd4b679c00 Step 32/51 : ARG REPO_DIR=${HOME} ---> Using cache ---> a2723308971d Step 33/51 : ENV REPO_DIR ${REPO_DIR} ---> Using cache ---> 9eb7699af13d Step 34/51 : WORKDIR ${REPO_DIR} ---> Using cache ---> 7178e86cb1f7 Step 35/51 : RUN chown ${NB_USER}:${NB_USER} ${REPO_DIR} ---> Using cache ---> 0936e53d0ed5 Step 36/51 : ENV PATH ${HOME}/.local/bin:${REPO_DIR}/.local/bin:${PATH} ---> Using cache ---> d8e1e17f1b99 Step 37/51 : ENV CONDA_DEFAULT_ENV ${KERNEL_PYTHON_PREFIX} ---> Using cache ---> 5fed9d36e364 Step 38/51 : COPY --chown=1000:1000 src/environment.yml ${REPO_DIR}/environment.yml ---> f1998eeba3bc Step 39/51 : USER ${NB_USER} ---> Running in b5c4c3f2aac4 Removing intermediate container b5c4c3f2aac4 ---> 5339a111c03d Step 40/51 : RUN TIMEFORMAT='time: %3R' bash -c 'time ${MAMBA_EXE} env update -p ${NB_PYTHON_PREFIX} --file "environment.yml" && time ${MAMBA_EXE} clean --all -f -y && ${MAMBA_EXE} list -p ${NB_PYTHON_PREFIX} ' ---> Running in 9ebf8836e19c Transaction Prefix: /srv/conda/envs/notebook Updating specs: - numpy==1.22.4 - pytest==6.2.5 - jupyter-dash==0.4.2 - matplotlib==3.5.2 - plotly==5.9.0 - pandas==1.4.3 - python=3.8 - jupyterlab==3.4.4 - ipywidgets==7.7.1 Package Version Build Channel Size ────────────────────────────────────────────────────────────────────────────────────────────── Install: ────────────────────────────────────────────────────────────────────────────────────────────── + alsa-lib 1.2.6.1 h7f98852_0 conda-forge/linux-64 592kB + ansi2html 1.8.0 py38h578d9bd_0 conda-forge/linux-64 42kB + attr 2.5.1 h166bdaf_1 conda-forge/linux-64 71kB + brotli 1.0.9 h166bdaf_7 conda-forge/linux-64 18kB + brotli-bin 1.0.9 h166bdaf_7 conda-forge/linux-64 19kB + brotli-python 1.0.9 py38hfa26641_7 conda-forge/linux-64 667kB + click 8.1.3 py38h578d9bd_0 conda-forge/linux-64 149kB + cycler 0.11.0 pyhd8ed1ab_0 conda-forge/noarch 10kB + dash 2.6.1 pyhd8ed1ab_0 conda-forge/noarch 8MB + dbus 1.13.6 h5008d03_3 conda-forge/linux-64 619kB + expat 2.4.8 h27087fc_0 conda-forge/linux-64 192kB + fftw 3.3.10 nompi_ha7695d1_103 conda-forge/linux-64 7MB + flask 2.2.2 pyhd8ed1ab_0 conda-forge/noarch 76kB + flask-compress 1.12 pyhd8ed1ab_0 conda-forge/noarch 14kB + font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge/noarch 397kB + font-ttf-inconsolata 3.000 h77eed37_0 conda-forge/noarch 97kB + font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge/noarch 701kB + font-ttf-ubuntu 0.83 hab24e00_0 conda-forge/noarch 2MB + fontconfig 2.14.0 h8e229c2_0 conda-forge/linux-64 312kB + fonts-conda-ecosystem 1 0 conda-forge/noarch 4kB + fonts-conda-forge 1 0 conda-forge/noarch 4kB + fonttools 4.34.4 py38h0a891b7_0 conda-forge/linux-64 2MB + freetype 2.10.4 hca18f0e_2 conda-forge/linux-64 935kB + gettext 0.19.8.1 h73d1719_1008 conda-forge/linux-64 4MB + glib 2.72.1 h6239696_0 conda-forge/linux-64 453kB + glib-tools 2.72.1 h6239696_0 conda-forge/linux-64 109kB + gst-plugins-base 1.20.3 hf6a322e_0 conda-forge/linux-64 3MB + gstreamer 1.20.3 hd4edc92_0 conda-forge/linux-64 2MB + iniconfig 1.1.1 pyh9f0ad1d_0 conda-forge/noarch 8kB + itsdangerous 2.1.2 pyhd8ed1ab_0 conda-forge/noarch 16kB + jack 1.9.18 h8c3723f_1002 conda-forge/linux-64 658kB + jpeg 9e h166bdaf_2 conda-forge/linux-64 275kB + jupyter-dash 0.4.2 pyhd8ed1ab_1 conda-forge/noarch 21kB + kiwisolver 1.4.4 py38h43d8883_0 conda-forge/linux-64 77kB + lcms2 2.12 hddcbb42_0 conda-forge/linux-64 453kB + lerc 4.0.0 h27087fc_0 conda-forge/linux-64 282kB + libblas 3.9.0 16_linux64_openblas conda-forge/linux-64 13kB + libbrotlicommon 1.0.9 h166bdaf_7 conda-forge/linux-64 66kB + libbrotlidec 1.0.9 h166bdaf_7 conda-forge/linux-64 34kB + libbrotlienc 1.0.9 h166bdaf_7 conda-forge/linux-64 294kB + libcap 2.64 ha37c62d_0 conda-forge/linux-64 99kB + libcblas 3.9.0 16_linux64_openblas conda-forge/linux-64 13kB + libclang 14.0.6 default_h2e3cab8_0 conda-forge/linux-64 130kB + libclang13 14.0.6 default_h3a83d3e_0 conda-forge/linux-64 11MB + libcups 2.3.3 h3e49a29_2 conda-forge/linux-64 5MB + libdb 6.2.32 h9c3ff4c_0 conda-forge/linux-64 24MB + libdeflate 1.13 h166bdaf_0 conda-forge/linux-64 80kB + libevent 2.1.10 h9b69904_4 conda-forge/linux-64 1MB + libflac 1.3.4 h27087fc_0 conda-forge/linux-64 485kB + libgfortran-ng 12.1.0 h69a702a_16 conda-forge/linux-64 23kB + libgfortran5 12.1.0 hdcd56e2_16 conda-forge/linux-64 2MB + libglib 2.72.1 h2d90d5f_0 conda-forge/linux-64 3MB + libiconv 1.16 h516909a_0 conda-forge/linux-64 1MB + liblapack 3.9.0 16_linux64_openblas conda-forge/linux-64 13kB + libllvm14 14.0.6 he0ac6c6_0 conda-forge/linux-64 37MB + libogg 1.3.4 h7f98852_1 conda-forge/linux-64 211kB + libopenblas 0.3.21 pthreads_h78a6416_0 conda-forge/linux-64 11MB + libopus 1.3.1 h7f98852_1 conda-forge/linux-64 261kB + libpng 1.6.37 h753d276_4 conda-forge/linux-64 380kB + libpq 14.5 hd77ab85_0 conda-forge/linux-64 3MB + libsndfile 1.0.31 h9c3ff4c_1 conda-forge/linux-64 616kB + libtiff 4.4.0 h0e0dad5_3 conda-forge/linux-64 658kB + libtool 2.4.6 h9c3ff4c_1008 conda-forge/linux-64 523kB + libudev1 249 h166bdaf_4 conda-forge/linux-64 111kB + libvorbis 1.3.7 h9c3ff4c_0 conda-forge/linux-64 286kB + libwebp-base 1.2.4 h166bdaf_0 conda-forge/linux-64 413kB + libxcb 1.13 h7f98852_1004 conda-forge/linux-64 400kB + libxkbcommon 1.0.3 he3ba5ed_0 conda-forge/linux-64 595kB + libxml2 2.9.14 h22db469_4 conda-forge/linux-64 789kB + lz4-c 1.9.3 h9c3ff4c_1 conda-forge/linux-64 184kB + matplotlib 3.5.2 py38h578d9bd_1 conda-forge/linux-64 7kB + matplotlib-base 3.5.2 py38h826bfd8_1 conda-forge/linux-64 8MB + munkres 1.1.4 pyh9f0ad1d_0 conda-forge/noarch 12kB + mysql-common 8.0.30 haf5c9bc_0 conda-forge/linux-64 2MB + mysql-libs 8.0.30 h28c427c_0 conda-forge/linux-64 2MB + nspr 4.32 h9c3ff4c_1 conda-forge/linux-64 239kB + nss 3.78 h2350873_0 conda-forge/linux-64 2MB + numpy 1.22.4 py38h99721a1_0 conda-forge/linux-64 7MB + openjpeg 2.5.0 h7d73246_1 conda-forge/linux-64 546kB + pandas 1.4.3 py38h47df419_0 conda-forge/linux-64 13MB + pcre 8.45 h9c3ff4c_0 conda-forge/linux-64 259kB + pillow 9.2.0 py38ha3b2c9c_2 conda-forge/linux-64 47MB + plotly 5.9.0 pyhd8ed1ab_0 conda-forge/noarch 7MB + pluggy 1.0.0 py38h578d9bd_3 conda-forge/linux-64 26kB + ply 3.11 py_1 conda-forge/noarch 45kB + portaudio 19.6.0 h57a0ea0_5 conda-forge/linux-64 134kB + pthread-stubs 0.4 h36c2ea0_1001 conda-forge/linux-64 6kB + pulseaudio 14.0 h7f54b18_8 conda-forge/linux-64 2MB + py 1.11.0 pyh6c4a22f_0 conda-forge/noarch 76kB + pyqt 5.15.7 py38h7492b6b_0 conda-forge/linux-64 6MB + pyqt5-sip 12.11.0 py38hfa26641_0 conda-forge/linux-64 88kB + pytest 6.2.5 py38h578d9bd_2 conda-forge/linux-64 443kB + qt-main 5.15.4 ha5833f6_2 conda-forge/linux-64 64MB + retrying 1.3.3 py_2 conda-forge/noarch 11kB + sip 6.6.2 py38hfa26641_0 conda-forge/linux-64 502kB + tenacity 8.0.1 pyhd8ed1ab_0 conda-forge/noarch 22kB + toml 0.10.2 pyhd8ed1ab_0 conda-forge/noarch 18kB + unicodedata2 14.0.0 py38h0a891b7_1 conda-forge/linux-64 510kB + werkzeug 2.2.2 pyhd8ed1ab_0 conda-forge/noarch 255kB + xcb-util 0.4.0 h516909a_0 conda-forge/linux-64 20kB + xcb-util-image 0.4.0 h166bdaf_0 conda-forge/linux-64 24kB + xcb-util-keysyms 0.4.0 h516909a_0 conda-forge/linux-64 12kB + xcb-util-renderutil 0.3.9 h166bdaf_0 conda-forge/linux-64 16kB + xcb-util-wm 0.4.1 h516909a_0 conda-forge/linux-64 56kB + xorg-libxau 1.0.9 h7f98852_0 conda-forge/linux-64 13kB + xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge/linux-64 19kB + zstd 1.5.2 h8a70e8d_4 conda-forge/linux-64 459kB Upgrade: ────────────────────────────────────────────────────────────────────────────────────────────── - ipywidgets 7.7.0 pyhd8ed1ab_0 conda-forge + ipywidgets 7.7.1 pyhd8ed1ab_0 conda-forge/noarch 106kB - jupyterlab 3.3.3 pyhd8ed1ab_0 conda-forge + jupyterlab 3.4.4 pyhd8ed1ab_0 conda-forge/noarch 6MB Summary: Install: 107 packages Upgrade: 2 packages Total download: 312MB ────────────────────────────────────────────────────────────────────────────────────────────── Looking for: ['python=3.8', 'numpy==1.22.4', 'pytest==6.2.5', 'jupyterlab==3.4.4', 'ipywidgets==7.7.1', 'jupyter-dash==0.4.2', 'matplotlib==3.5.2', 'plotly==5.9.0', 'pandas==1.4.3'] Preparing transaction: ...working... done Verifying transaction: ...working... done Executing transaction: ...working... done # # To activate this environment, use # # $ conda activate /srv/conda/envs/notebook # # To deactivate an active environment, use # # $ conda deactivate [91mtime: 105.452 [0mWill remove 1 package cache(s). [91mtime: 1.830 [0m# packages in environment at /srv/conda/envs/notebook: # # Name Version Build Channel _libgcc_mutex 0.1 conda_forge conda-forge _openmp_mutex 4.5 2_gnu conda-forge alembic 1.8.1 pyhd8ed1ab_0 conda-forge alsa-lib 1.2.6.1 h7f98852_0 conda-forge ansi2html 1.8.0 py38h578d9bd_0 conda-forge anyio 3.6.1 py38h578d9bd_0 conda-forge argon2-cffi 21.3.0 pyhd8ed1ab_0 conda-forge argon2-cffi-bindings 21.2.0 py38h0a891b7_2 conda-forge asttokens 2.0.5 pyhd8ed1ab_0 conda-forge async_generator 1.10 py_0 conda-forge attr 2.5.1 h166bdaf_1 conda-forge attrs 22.1.0 pyh71513ae_1 conda-forge babel 2.10.3 pyhd8ed1ab_0 conda-forge backcall 0.2.0 pyh9f0ad1d_0 conda-forge backports 1.0 py_2 conda-forge backports.functools_lru_cache 1.6.4 pyhd8ed1ab_0 conda-forge beautifulsoup4 4.11.1 pyha770c72_0 conda-forge bleach 5.0.1 pyhd8ed1ab_0 conda-forge blinker 1.4 py_1 conda-forge brotli 1.0.9 h166bdaf_7 conda-forge brotli-bin 1.0.9 h166bdaf_7 conda-forge brotli-python 1.0.9 py38hfa26641_7 conda-forge brotlipy 0.7.0 py38h0a891b7_1004 conda-forge bzip2 1.0.8 h7f98852_4 conda-forge c-ares 1.18.1 h7f98852_0 conda-forge ca-certificates 2022.6.15 ha878542_0 conda-forge certifi 2022.6.15 py38h578d9bd_0 conda-forge certipy 0.1.3 py_0 conda-forge cffi 1.15.1 py38h4a40e3a_0 conda-forge charset-normalizer 2.1.0 pyhd8ed1ab_0 conda-forge click 8.1.3 py38h578d9bd_0 conda-forge cryptography 37.0.4 py38h2b5fc30_0 conda-forge cycler 0.11.0 pyhd8ed1ab_0 conda-forge dash 2.6.1 pyhd8ed1ab_0 conda-forge dbus 1.13.6 h5008d03_3 conda-forge debugpy 1.6.0 py38hfa26641_0 conda-forge decorator 5.1.1 pyhd8ed1ab_0 conda-forge defusedxml 0.7.1 pyhd8ed1ab_0 conda-forge entrypoints 0.4 pyhd8ed1ab_0 conda-forge executing 0.9.1 pyhd8ed1ab_0 conda-forge expat 2.4.8 h27087fc_0 conda-forge fftw 3.3.10 nompi_ha7695d1_103 conda-forge flask 2.2.2 pyhd8ed1ab_0 conda-forge flask-compress 1.12 pyhd8ed1ab_0 conda-forge flit-core 3.7.1 pyhd8ed1ab_0 conda-forge font-ttf-dejavu-sans-mono 2.37 hab24e00_0 conda-forge font-ttf-inconsolata 3.000 h77eed37_0 conda-forge font-ttf-source-code-pro 2.038 h77eed37_0 conda-forge font-ttf-ubuntu 0.83 hab24e00_0 conda-forge fontconfig 2.14.0 h8e229c2_0 conda-forge fonts-conda-ecosystem 1 0 conda-forge fonts-conda-forge 1 0 conda-forge fonttools 4.34.4 py38h0a891b7_0 conda-forge freetype 2.10.4 hca18f0e_2 conda-forge gettext 0.19.8.1 h73d1719_1008 conda-forge glib 2.72.1 h6239696_0 conda-forge glib-tools 2.72.1 h6239696_0 conda-forge greenlet 1.1.2 py38hfa26641_2 conda-forge gst-plugins-base 1.20.3 hf6a322e_0 conda-forge gstreamer 1.20.3 hd4edc92_0 conda-forge icu 70.1 h27087fc_0 conda-forge idna 3.3 pyhd8ed1ab_0 conda-forge importlib-metadata 4.11.4 py38h578d9bd_0 conda-forge importlib_metadata 4.11.4 hd8ed1ab_0 conda-forge importlib_resources 5.9.0 pyhd8ed1ab_0 conda-forge iniconfig 1.1.1 pyh9f0ad1d_0 conda-forge ipykernel 6.15.1 pyh210e3f2_0 conda-forge ipython 8.4.0 py38h578d9bd_0 conda-forge ipython_genutils 0.2.0 py_1 conda-forge ipywidgets 7.7.1 pyhd8ed1ab_0 conda-forge itsdangerous 2.1.2 pyhd8ed1ab_0 conda-forge jack 1.9.18 h8c3723f_1002 conda-forge jedi 0.18.1 py38h578d9bd_1 conda-forge jinja2 3.1.2 pyhd8ed1ab_1 conda-forge jpeg 9e h166bdaf_2 conda-forge json5 0.9.5 pyh9f0ad1d_0 conda-forge jsonschema 4.9.0 pyhd8ed1ab_0 conda-forge jupyter-dash 0.4.2 pyhd8ed1ab_1 conda-forge jupyter-offlinenotebook 0.2.2 pyh1d7be83_0 conda-forge jupyter-resource-usage 0.6.1 pyhd8ed1ab_0 conda-forge jupyter_client 7.3.4 pyhd8ed1ab_0 conda-forge jupyter_core 4.11.1 py38h578d9bd_0 conda-forge jupyter_server 1.18.1 pyhd8ed1ab_0 conda-forge jupyter_telemetry 0.1.0 pyhd8ed1ab_1 conda-forge jupyterhub-base 1.5.0 py38h578d9bd_1 conda-forge jupyterhub-singleuser 1.5.0 py38h578d9bd_1 conda-forge jupyterlab 3.4.4 pyhd8ed1ab_0 conda-forge jupyterlab_pygments 0.2.2 pyhd8ed1ab_0 conda-forge jupyterlab_server 2.15.0 pyhd8ed1ab_0 conda-forge jupyterlab_widgets 1.1.1 pyhd8ed1ab_0 conda-forge keyutils 1.6.1 h166bdaf_0 conda-forge kiwisolver 1.4.4 py38h43d8883_0 conda-forge krb5 1.19.3 h3790be6_0 conda-forge lcms2 2.12 hddcbb42_0 conda-forge ld_impl_linux-64 2.36.1 hea4e1c9_2 conda-forge lerc 4.0.0 h27087fc_0 conda-forge libblas 3.9.0 16_linux64_openblas conda-forge libbrotlicommon 1.0.9 h166bdaf_7 conda-forge libbrotlidec 1.0.9 h166bdaf_7 conda-forge libbrotlienc 1.0.9 h166bdaf_7 conda-forge libcap 2.64 ha37c62d_0 conda-forge libcblas 3.9.0 16_linux64_openblas conda-forge libclang 14.0.6 default_h2e3cab8_0 conda-forge libclang13 14.0.6 default_h3a83d3e_0 conda-forge libcups 2.3.3 h3e49a29_2 conda-forge libcurl 7.83.1 h7bff187_0 conda-forge libdb 6.2.32 h9c3ff4c_0 conda-forge libdeflate 1.13 h166bdaf_0 conda-forge libedit 3.1.20191231 he28a2e2_2 conda-forge libev 4.33 h516909a_1 conda-forge libevent 2.1.10 h9b69904_4 conda-forge libffi 3.4.2 h7f98852_5 conda-forge libflac 1.3.4 h27087fc_0 conda-forge libgcc-ng 12.1.0 h8d9b700_16 conda-forge libgfortran-ng 12.1.0 h69a702a_16 conda-forge libgfortran5 12.1.0 hdcd56e2_16 conda-forge libglib 2.72.1 h2d90d5f_0 conda-forge libgomp 12.1.0 h8d9b700_16 conda-forge libiconv 1.16 h516909a_0 conda-forge liblapack 3.9.0 16_linux64_openblas conda-forge libllvm14 14.0.6 he0ac6c6_0 conda-forge libnghttp2 1.47.0 h727a467_0 conda-forge libnsl 2.0.0 h7f98852_0 conda-forge libogg 1.3.4 h7f98852_1 conda-forge libopenblas 0.3.21 pthreads_h78a6416_0 conda-forge libopus 1.3.1 h7f98852_1 conda-forge libpng 1.6.37 h753d276_4 conda-forge libpq 14.5 hd77ab85_0 conda-forge libsndfile 1.0.31 h9c3ff4c_1 conda-forge libsodium 1.0.18 h36c2ea0_1 conda-forge libssh2 1.10.0 ha56f1ee_2 conda-forge libstdcxx-ng 12.1.0 ha89aaad_16 conda-forge libtiff 4.4.0 h0e0dad5_3 conda-forge libtool 2.4.6 h9c3ff4c_1008 conda-forge libudev1 249 h166bdaf_4 conda-forge libuuid 2.32.1 h7f98852_1000 conda-forge libuv 1.43.0 h7f98852_0 conda-forge libvorbis 1.3.7 h9c3ff4c_0 conda-forge libwebp-base 1.2.4 h166bdaf_0 conda-forge libxcb 1.13 h7f98852_1004 conda-forge libxkbcommon 1.0.3 he3ba5ed_0 conda-forge libxml2 2.9.14 h22db469_4 conda-forge libzlib 1.2.12 h166bdaf_2 conda-forge lz4-c 1.9.3 h9c3ff4c_1 conda-forge mako 1.2.1 pyhd8ed1ab_0 conda-forge markupsafe 2.1.1 py38h0a891b7_1 conda-forge matplotlib 3.5.2 py38h578d9bd_1 conda-forge matplotlib-base 3.5.2 py38h826bfd8_1 conda-forge matplotlib-inline 0.1.3 pyhd8ed1ab_0 conda-forge mistune 0.8.4 py38h497a2fe_1005 conda-forge munkres 1.1.4 pyh9f0ad1d_0 conda-forge mysql-common 8.0.30 haf5c9bc_0 conda-forge mysql-libs 8.0.30 h28c427c_0 conda-forge nbclassic 0.4.3 pyhd8ed1ab_0 conda-forge nbclient 0.6.6 pyhd8ed1ab_0 conda-forge nbconvert 6.5.0 pyhd8ed1ab_0 conda-forge nbconvert-core 6.5.0 pyhd8ed1ab_0 conda-forge nbconvert-pandoc 6.5.0 pyhd8ed1ab_0 conda-forge nbformat 5.4.0 pyhd8ed1ab_0 conda-forge ncurses 6.3 h27087fc_1 conda-forge nest-asyncio 1.5.5 pyhd8ed1ab_0 conda-forge nodejs 16.14.2 h96d913c_1 conda-forge notebook 6.4.10 pyha770c72_0 conda-forge notebook-shim 0.1.0 pyhd8ed1ab_0 conda-forge nspr 4.32 h9c3ff4c_1 conda-forge nss 3.78 h2350873_0 conda-forge nteract_on_jupyter 2.1.3 py_0 conda-forge numpy 1.22.4 py38h99721a1_0 conda-forge oauthlib 3.2.0 pyhd8ed1ab_0 conda-forge openjpeg 2.5.0 h7d73246_1 conda-forge openssl 1.1.1q h166bdaf_0 conda-forge packaging 21.3 pyhd8ed1ab_0 conda-forge pamela 1.0.0 py_0 conda-forge pandas 1.4.3 py38h47df419_0 conda-forge pandoc 2.18 ha770c72_0 conda-forge pandocfilters 1.5.0 pyhd8ed1ab_0 conda-forge parso 0.8.3 pyhd8ed1ab_0 conda-forge pcre 8.45 h9c3ff4c_0 conda-forge pexpect 4.8.0 pyh9f0ad1d_2 conda-forge pickleshare 0.7.5 py_1003 conda-forge pillow 9.2.0 py38ha3b2c9c_2 conda-forge pip 22.2.1 pyhd8ed1ab_0 conda-forge pkgutil-resolve-name 1.3.10 pyhd8ed1ab_0 conda-forge plotly 5.9.0 pyhd8ed1ab_0 conda-forge pluggy 1.0.0 py38h578d9bd_3 conda-forge ply 3.11 py_1 conda-forge portaudio 19.6.0 h57a0ea0_5 conda-forge prometheus_client 0.14.1 pyhd8ed1ab_0 conda-forge prompt-toolkit 3.0.30 pyha770c72_0 conda-forge psutil 5.9.1 py38h0a891b7_0 conda-forge pthread-stubs 0.4 h36c2ea0_1001 conda-forge ptyprocess 0.7.0 pyhd3deb0d_0 conda-forge pulseaudio 14.0 h7f54b18_8 conda-forge pure_eval 0.2.2 pyhd8ed1ab_0 conda-forge py 1.11.0 pyh6c4a22f_0 conda-forge pycparser 2.21 pyhd8ed1ab_0 conda-forge pycurl 7.45.1 py38h61f0cdf_2 conda-forge pygments 2.12.0 pyhd8ed1ab_0 conda-forge pyjwt 2.4.0 pyhd8ed1ab_0 conda-forge pyopenssl 22.0.0 pyhd8ed1ab_0 conda-forge pyparsing 3.0.9 pyhd8ed1ab_0 conda-forge pyqt 5.15.7 py38h7492b6b_0 conda-forge pyqt5-sip 12.11.0 py38hfa26641_0 conda-forge pyrsistent 0.18.1 py38h0a891b7_1 conda-forge pysocks 1.7.1 py38h578d9bd_5 conda-forge pytest 6.2.5 py38h578d9bd_2 conda-forge python 3.8.13 h582c2e5_0_cpython conda-forge python-dateutil 2.8.2 pyhd8ed1ab_0 conda-forge python-fastjsonschema 2.16.1 pyhd8ed1ab_0 conda-forge python-json-logger 2.0.1 pyh9f0ad1d_0 conda-forge python_abi 3.8 2_cp38 conda-forge pytz 2022.1 pyhd8ed1ab_0 conda-forge pyzmq 23.2.0 py38hfc09fa9_0 conda-forge qt-main 5.15.4 ha5833f6_2 conda-forge readline 8.1.2 h0f457ee_0 conda-forge requests 2.28.1 pyhd8ed1ab_0 conda-forge retrying 1.3.3 py_2 conda-forge ruamel.yaml 0.17.21 py38h0a891b7_1 conda-forge ruamel.yaml.clib 0.2.6 py38h0a891b7_1 conda-forge send2trash 1.8.0 pyhd8ed1ab_0 conda-forge setuptools 63.3.0 py38h578d9bd_0 conda-forge sip 6.6.2 py38hfa26641_0 conda-forge six 1.16.0 pyh6c4a22f_0 conda-forge sniffio 1.2.0 py38h578d9bd_3 conda-forge soupsieve 2.3.2.post1 pyhd8ed1ab_0 conda-forge sqlalchemy 1.4.39 py38h0a891b7_0 conda-forge sqlite 3.39.2 h4ff8645_0 conda-forge stack_data 0.3.0 pyhd8ed1ab_0 conda-forge tenacity 8.0.1 pyhd8ed1ab_0 conda-forge terminado 0.15.0 py38h578d9bd_0 conda-forge tinycss2 1.1.1 pyhd8ed1ab_0 conda-forge tk 8.6.12 h27826a3_0 conda-forge toml 0.10.2 pyhd8ed1ab_0 conda-forge tornado 6.2 py38h0a891b7_0 conda-forge traitlets 5.3.0 pyhd8ed1ab_0 conda-forge unicodedata2 14.0.0 py38h0a891b7_1 conda-forge urllib3 1.26.11 pyhd8ed1ab_0 conda-forge wcwidth 0.2.5 pyh9f0ad1d_2 conda-forge webencodings 0.5.1 py_1 conda-forge websocket-client 1.3.3 pyhd8ed1ab_0 conda-forge werkzeug 2.2.2 pyhd8ed1ab_0 conda-forge wheel 0.37.1 pyhd8ed1ab_0 conda-forge widgetsnbextension 3.6.1 pyha770c72_0 conda-forge xcb-util 0.4.0 h516909a_0 conda-forge xcb-util-image 0.4.0 h166bdaf_0 conda-forge xcb-util-keysyms 0.4.0 h516909a_0 conda-forge xcb-util-renderutil 0.3.9 h166bdaf_0 conda-forge xcb-util-wm 0.4.1 h516909a_0 conda-forge xorg-libxau 1.0.9 h7f98852_0 conda-forge xorg-libxdmcp 1.1.3 h7f98852_0 conda-forge xz 5.2.5 h516909a_1 conda-forge zeromq 4.3.4 h9c3ff4c_1 conda-forge zipp 3.8.0 pyhd8ed1ab_0 conda-forge zlib 1.2.12 h166bdaf_2 conda-forge zstd 1.5.2 h8a70e8d_4 conda-forge Removing intermediate container 9ebf8836e19c ---> 81015a2be40f Step 41/51 : USER root ---> Running in 267942e951e4 Removing intermediate container 267942e951e4 ---> 08667b6fb161 Step 42/51 : COPY --chown=1000:1000 src/ ${REPO_DIR} ---> 724f09623c18 Step 43/51 : LABEL repo2docker.ref="9e647eff3b328cb167d0f119b6d54a69e51d6c46" ---> Running in a3e419fb9cf9 Removing intermediate container a3e419fb9cf9 ---> dac58e874446 Step 44/51 : LABEL repo2docker.repo="https://github.com/BrainAnnex/life123" ---> Running in 843882524d0c Removing intermediate container 843882524d0c ---> 28ecf79b8290 Step 45/51 : LABEL repo2docker.version="2022.02.0+75.gd415115" ---> Running in 2c4a3f333649 Removing intermediate container 2c4a3f333649 ---> 982942bd06f5 Step 46/51 : USER ${NB_USER} ---> Running in 13c8210b8b89 Removing intermediate container 13c8210b8b89 ---> 2a7b0f974be4 Step 47/51 : ENV PYTHONUNBUFFERED=1 ---> Running in 03e2aed6bc8c Removing intermediate container 03e2aed6bc8c ---> 0c4cc7c77cb8 Step 48/51 : COPY /python3-login /usr/local/bin/python3-login ---> ddd15f3f40c9 Step 49/51 : COPY /repo2docker-entrypoint /usr/local/bin/repo2docker-entrypoint ---> 480e1369f967 Step 50/51 : ENTRYPOINT ["/usr/local/bin/repo2docker-entrypoint"] ---> Running in 23c48367c70c Removing intermediate container 23c48367c70c ---> c103101ec3bf Step 51/51 : CMD ["jupyter", "notebook", "--ip", "0.0.0.0"] ---> Running in c1e927b2c4ac Removing intermediate container c1e927b2c4ac ---> e7ad431b9c30 {"aux": {"ID": "sha256:e7ad431b9c30d02b477de5c4c39b7b1c06fdb0cfb119ac16aa35a33a1564ca19"}}Successfully built e7ad431b9c30 Successfully tagged gcr.io/binderhub-288415/r2d-staging-g5b5b759-brainannex-2dlife123-d3c44e:9e647eff3b328cb167d0f119b6d54a69e51d6c46 Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Pushing image Successfully pushed gcr.io/binderhub-288415/r2d-staging-g5b5b759-brainannex-2dlife123-d3c44e:9e647eff3b328cb167d0f119b6d54a69e51d6c46Built image, launching... Launching server... Server requested 2022-08-14T21:41:46.861271Z [Normal] Successfully assigned prod/jupyter-brainannex-2dlife123-2d6jh0p0v7 to gke-prod-user-202201-0769dbf8-p070 2022-08-14T21:41:47Z [Normal] Container image "jupyterhub/mybinder.org-tc-init:2020.12.4-n999.h140cef5" already present on machine 2022-08-14T21:41:47Z [Normal] Created container tc-init 2022-08-14T21:41:47Z [Normal] Started container tc-init 2022-08-14T21:41:48Z [Normal] Pulling image "gcr.io/binderhub-288415/r2d-staging-g5b5b759-brainannex-2dlife123-d3c44e:9e647eff3b328cb167d0f119b6d54a69e51d6c46" 2022-08-14T21:42:08Z [Normal] Successfully pulled image "gcr.io/binderhub-288415/r2d-staging-g5b5b759-brainannex-2dlife123-d3c44e:9e647eff3b328cb167d0f119b6d54a69e51d6c46" in 19.785055315s 2022-08-14T21:42:08Z [Normal] Created container notebook 2022-08-14T21:42:08Z [Normal] Started container notebook