Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error during build: UnixHTTPConnectionPool #14

Open
arnim opened this issue Oct 13, 2023 · 3 comments
Open

Error during build: UnixHTTPConnectionPool #14

arnim opened this issue Oct 13, 2023 · 3 comments

Comments

@arnim
Copy link
Member

arnim commented Oct 13, 2023

gh/arnimtest/PHYS2015_2023/HEAD

Waiting for build to start...
Picked Git content provider.
Cloning into '/tmp/repo2dockeryvjnszfy'...
HEAD is now at 5dafaa7 added question on dominant component of spectrum
Building conda environment for python=3.9
Using CondaBuildPack builder
Step 1/50 : FROM docker.io/library/buildpack-deps:bionic
 ---> 0f137f206fa8
Step 2/50 : ENV DEBIAN_FRONTEND=noninteractive
 ---> Using cache
 ---> 5adb5d4213f3
Step 3/50 : 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
 ---> 3f73fc804dae
Step 4/50 : RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen &&     locale-gen
 ---> Using cache
 ---> cc154af39a10
Step 5/50 : ENV LC_ALL=en_US.UTF-8     LANG=en_US.UTF-8     LANGUAGE=en_US.UTF-8
 ---> Using cache
 ---> 6eddaa9e4a0f
Step 6/50 : ENV SHELL=/bin/bash
 ---> Using cache
 ---> 0ec930b315d1
Step 7/50 : ARG NB_USER
 ---> Using cache
 ---> 0b1fdf7dc1a6
Step 8/50 : ARG NB_UID
 ---> Using cache
 ---> 808e307d5962
Step 9/50 : ENV USER=${NB_USER}     HOME=/home/${NB_USER}
 ---> Using cache
 ---> 99c51a4ef002
Step 10/50 : 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
 ---> 55c36f280197
Step 11/50 : RUN apt-get -qq update &&     apt-get -qq install --yes --no-install-recommends        gettext-base        less        unzip        > /dev/null &&     apt-get -qq purge &&     apt-get -qq clean &&     rm -rf /var/lib/apt/lists/*
 ---> Using cache
 ---> 9976c2a6dd60
Step 12/50 : EXPOSE 8888
 ---> Using cache
 ---> 1e3b2169dcd2
Step 13/50 : ENV APP_BASE=/srv
 ---> Using cache
 ---> 070d1f82f7d8
Step 14/50 : ENV CONDA_DIR=${APP_BASE}/conda
 ---> Using cache
 ---> 0789f5d70008
Step 15/50 : ENV NB_PYTHON_PREFIX=${CONDA_DIR}/envs/notebook
 ---> Using cache
 ---> 89e05983b3d4
Step 16/50 : ENV NPM_DIR=${APP_BASE}/npm
 ---> Using cache
 ---> d9ab9faeede3
Step 17/50 : ENV NPM_CONFIG_GLOBALCONFIG=${NPM_DIR}/npmrc
 ---> Using cache
 ---> 5333033100a9
Step 18/50 : ENV NB_ENVIRONMENT_FILE=/tmp/env/environment.lock
 ---> Using cache
 ---> 87b6194588b4
Step 19/50 : ENV MAMBA_ROOT_PREFIX=${CONDA_DIR}
 ---> Using cache
 ---> ccc3cc01fd42
Step 20/50 : ENV MAMBA_EXE=${CONDA_DIR}/bin/mamba
 ---> Using cache
 ---> a99a3e8425e5
Step 21/50 : ENV CONDA_PLATFORM=linux-64
 ---> Using cache
 ---> 3801a3a9ba44
Step 22/50 : ENV KERNEL_PYTHON_PREFIX=${NB_PYTHON_PREFIX}
 ---> Using cache
 ---> 6f08e6d75dc4
Step 23/50 : ENV PATH=${NB_PYTHON_PREFIX}/bin:${CONDA_DIR}/bin:${NPM_DIR}/bin:${PATH}
 ---> Using cache
 ---> 48b7e0dcee04
Step 24/50 : COPY --chown=1000:1000 build_script_files/-2fusr-2flib-2fpython3-2e10-2fsite-2dpackages-2frepo2docker-2fbuildpacks-2fconda-2factivate-2dconda-2esh-44e764 /etc/profile.d/activate-conda.sh
 ---> Using cache
 ---> f65ff4395ebe
Step 25/50 : COPY --chown=1000:1000 build_script_files/-2fusr-2flib-2fpython3-2e10-2fsite-2dpackages-2frepo2docker-2fbuildpacks-2fconda-2fenvironment-2epy-2d3-2e9-2dlinux-2d64-2elock-3652dd /tmp/env/environment.lock
 ---> Using cache
 ---> 280a861b85b9
Step 26/50 : COPY --chown=1000:1000 build_script_files/-2fusr-2flib-2fpython3-2e10-2fsite-2dpackages-2frepo2docker-2fbuildpacks-2fconda-2finstall-2dbase-2denv-2ebash-e5509f /tmp/install-base-env.bash
 ---> Using cache
 ---> 91cb5c1566c3
Step 27/50 : RUN TIMEFORMAT='time: %3R' bash -c 'time /tmp/install-base-env.bash' && rm -rf /tmp/install-base-env.bash /tmp/env
 ---> Using cache
 ---> 03f023cf8458
Step 28/50 : RUN mkdir -p ${NPM_DIR} && chown -R ${NB_USER}:${NB_USER} ${NPM_DIR}
 ---> Using cache
 ---> c1c97c7ae67f
Step 29/50 : USER root
 ---> Using cache
 ---> c346d5c23480
Step 30/50 : ARG REPO_DIR=${HOME}
 ---> Using cache
 ---> d69cc60b9605
Step 31/50 : ENV REPO_DIR=${REPO_DIR}
 ---> Using cache
 ---> 015782bd9de2
Step 32/50 : RUN if [ ! -d "${REPO_DIR}" ]; then         /usr/bin/install -o ${NB_USER} -g ${NB_USER} -d "${REPO_DIR}";     fi
 ---> Using cache
 ---> 993a8c553601
Step 33/50 : WORKDIR ${REPO_DIR}
 ---> Using cache
 ---> df8fa9dcbc76
Step 34/50 : RUN chown ${NB_USER}:${NB_USER} ${REPO_DIR}
 ---> Using cache
 ---> 684384e6a516
Step 35/50 : ENV PATH=${HOME}/.local/bin:${REPO_DIR}/.local/bin:${PATH}
 ---> Using cache
 ---> 597e3f89e235
Step 36/50 : ENV CONDA_DEFAULT_ENV=${KERNEL_PYTHON_PREFIX}
 ---> Using cache
 ---> 7f4db92a75fa
Step 37/50 : COPY --chown=1000:1000 src/environment.yml ${REPO_DIR}/environment.yml
 ---> ba0e9a880323
Step 38/50 : USER ${NB_USER}
 ---> Running in 2cd99d86d9e8
Removing intermediate container 2cd99d86d9e8
 ---> fb3326ec4fc7
Step 39/50 : 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 048b18990976


Looking for: ['python=3.9', "fermitools[version='>=2.2.0']", 'healpy', 'gammapy', 'pip']


Transaction

  Prefix: /srv/conda/envs/notebook

  Updating specs:

   - fermitools[version='>=2.2.0']
   - healpy
   - gammapy
   - python=3.9
   - pip


  Package                             Version  Build                Channel          Size
───────────────────────────────────────────────────────────────────────────────────────────
  Install:
───────────────────────────────────────────────────────────────────────────────────────────

  + clhep                             2.4.5.3  h27087fc_0           conda-forge      39MB
  + zstd                                1.5.5  hfc55251_0           conda-forge     545kB
  + keyutils                            1.6.1  h166bdaf_0           conda-forge     118kB
  + libgfortran5                       13.2.0  ha4646dd_0           conda-forge       1MB
  + f2c                        20210323183018  h166bdaf_1010        conda-forge     281kB
  + alsa-lib                            1.2.9  hd590300_0           conda-forge     547kB
  + libexpat                            2.5.0  hcb278e6_1           conda-forge      78kB
  + xorg-libice                         1.1.1  hd590300_0           conda-forge      58kB
  + gettext                            0.21.1  h27087fc_0           conda-forge       4MB
  + xorg-libxau                        1.0.11  hd590300_0           conda-forge      14kB
  + libiconv                             1.17  h166bdaf_0           conda-forge       1MB
  + c-ares                             1.20.1  hd590300_0           conda-forge     115kB
  + libev                                4.33  h516909a_1           conda-forge     106kB
  + pcre2                               10.40  hc3806b6_0           conda-forge       2MB
  + libogg                              1.3.4  h7f98852_1           conda-forge     211kB
  + libopus                             1.3.1  h7f98852_1           conda-forge     261kB
  + libpng                             1.6.39  h753d276_0           conda-forge     283kB
  + pixman                             0.42.2  h59595ed_0           conda-forge     385kB
  + xorg-xextproto                      7.3.0  h0b41bf4_1003        conda-forge      30kB
  + libjpeg-turbo                     2.1.5.1  hd590300_1           conda-forge     496kB
  + nspr                                 4.35  h27087fc_0           conda-forge     227kB
  + lerc                                4.0.0  h27087fc_0           conda-forge     282kB
  + libdeflate                           1.19  hd590300_0           conda-forge      67kB
  + libwebp-base                        1.3.2  hd590300_0           conda-forge     402kB
  + lz4-c                               1.9.4  hcb278e6_0           conda-forge     143kB
  + lame                                3.100  h166bdaf_1003        conda-forge     508kB
  + mpg123                             1.32.3  h59595ed_0           conda-forge     492kB
  + attr                                2.5.1  h166bdaf_1           conda-forge      71kB
  + libedit                      3.1.20191231  he28a2e2_2           conda-forge     124kB
  + graphite2                          1.3.13  h58526e2_1001        conda-forge     105kB
  + cppunit                            1.15.1  h9c3ff4c_0           conda-forge     273kB
  + xorg-renderproto                   0.11.1  h7f98852_1002        conda-forge      10kB
  + xorg-kbproto                        1.0.7  h7f98852_1002        conda-forge      27kB
  + xorg-xproto                        7.0.31  h7f98852_1007        conda-forge      75kB
  + xorg-xf86vidmodeproto               2.3.1  h7f98852_1002        conda-forge      24kB
  + pthread-stubs                         0.4  h36c2ea0_1001        conda-forge       6kB
  + xorg-libxdmcp                       1.1.3  h7f98852_0           conda-forge      19kB
  + mysql-common                       8.0.33  hf1915f5_5           conda-forge     758kB
  + libevent                           2.1.12  hf998b51_1           conda-forge     427kB
  + libssh2                            1.11.0  h0841786_0           conda-forge     271kB
  + libgfortran-ng                     13.2.0  h69a702a_0           conda-forge      23kB
  + expat                               2.5.0  hcb278e6_1           conda-forge     137kB
  + xorg-libsm                          1.2.4  h7391055_0           conda-forge      27kB
  + libgpg-error                         1.47  h71f35ed_0           conda-forge     261kB
  + libxml2                            2.11.5  h0d562d8_0           conda-forge     705kB
  + libnghttp2                         1.52.0  h61bc06f_0           conda-forge     622kB
  + libglib                            2.78.0  hebfc3b9_0           conda-forge       3MB
  + libvorbis                           1.3.7  h9c3ff4c_0           conda-forge     286kB
  + libflac                             1.4.3  h59595ed_0           conda-forge     394kB
  + freetype                           2.12.1  h267a509_2           conda-forge     635kB
  + nss                                  3.94  h1d7d5a4_0           conda-forge       2MB
  + libtiff                             4.6.0  h29866fb_1           conda-forge     277kB
  + libcap                               2.69  h0f662aa_0           conda-forge     101kB
  + krb5                               1.21.2  h659d440_0           conda-forge       1MB
  + libxcb                               1.15  h0b41bf4_0           conda-forge     384kB
  + mysql-libs                         8.0.33  hca2cd23_5           conda-forge       2MB
  + libopenblas                        0.3.24  pthreads_h413a1c8_0  conda-forge       5MB
  + fftw                               3.3.10  nompi_hc118613_108   conda-forge       2MB
  + libgcrypt                          1.10.1  h166bdaf_0           conda-forge     720kB
  + libllvm15                          15.0.7  h5cf9203_3           conda-forge      33MB
  + dbus                               1.13.6  h5008d03_3           conda-forge     619kB
  + glib-tools                         2.78.0  hfc55251_0           conda-forge     112kB
  + libsndfile                          1.2.2  hc60ed4a_1           conda-forge     354kB
  + fontconfig                         2.14.2  h14ed4e7_0           conda-forge     272kB
  + lcms2                                2.15  h7f713cb_2           conda-forge     241kB
  + openjpeg                            2.5.0  h488ebb8_3           conda-forge     357kB
  + libpq                                15.4  hfc447b1_2           conda-forge       3MB
  + libcups                             2.3.3  h4637d8d_4           conda-forge       5MB
  + libcurl                             8.4.0  hca28451_0           conda-forge     386kB
  + xcb-util-wm                         0.4.1  h8ee46fc_1           conda-forge      52kB
  + xcb-util-keysyms                    0.4.0  h8ee46fc_1           conda-forge      14kB
  + xcb-util                            0.4.0  hd590300_1           conda-forge      20kB
  + xorg-libx11                         1.8.7  h8ee46fc_0           conda-forge     829kB
  + xcb-util-renderutil                 0.3.9  hd590300_1           conda-forge      17kB
  + libblas                             3.9.0  18_linux64_openblas  conda-forge      15kB
  + libsystemd0                           254  h3516f8a_0           conda-forge     400kB
  + libclang13                         15.0.7  default_h9986a30_3   conda-forge      10MB
  + xerces-c                            3.2.4  h8d71039_2           conda-forge       2MB
  + cfitsio                             4.1.0  hd9d235c_0           conda-forge       1MB
  + xcb-util-image                      0.4.0  h8ee46fc_1           conda-forge      24kB
  + pgplot                              5.2.2  hf4b3394_1008        conda-forge     270kB
  + xkeyboard-config                     2.40  hd590300_0           conda-forge     896kB
  + xorg-libxext                        1.3.4  h0b41bf4_2           conda-forge      50kB
  + xorg-libxrender                    0.9.11  hd590300_0           conda-forge      38kB
  + libcblas                            3.9.0  18_linux64_openblas  conda-forge      14kB
  + liblapack                           3.9.0  18_linux64_openblas  conda-forge      14kB
  + pulseaudio-client                    16.1  hb77b528_5           conda-forge     755kB
  + libclang                           15.0.7  default_h7634d5b_3   conda-forge     133kB
  + healpix_cxx                          3.31  h268b298_1007        conda-forge     621kB
  + wcslib                               7.12  h6195f97_0           conda-forge       1MB
  + libxkbcommon                        1.6.0  h5d7e998_0           conda-forge     573kB
  + gsl                                   2.7  he838d99_0           conda-forge       3MB
  + fermitools-data                      0.18  0                    fermi           497MB
  + font-ttf-dejavu-sans-mono            2.37  hab24e00_0           conda-forge     397kB
  + font-ttf-inconsolata                3.000  h77eed37_0           conda-forge      97kB
  + font-ttf-source-code-pro            2.038  h77eed37_0           conda-forge     701kB
  + font-ttf-ubuntu                      0.83  hab24e00_0           conda-forge       2MB
  + fonts-conda-forge                       1  0                    conda-forge       4kB
  + ply                                  3.11  py_1                 conda-forge      45kB
  + toml                               0.10.2  pyhd8ed1ab_0         conda-forge      18kB
  + iniconfig                           2.0.0  pyhd8ed1ab_0         conda-forge      11kB
  + pluggy                              1.3.0  pyhd8ed1ab_0         conda-forge      23kB
  + colorama                            0.4.6  pyhd8ed1ab_0         conda-forge      25kB
  + munkres                             1.1.4  pyh9f0ad1d_0         conda-forge      12kB
  + pyparsing                           3.1.1  pyhd8ed1ab_0         conda-forge      90kB
  + cycler                             0.12.1  pyhd8ed1ab_0         conda-forge      13kB
  + annotated-types                     0.6.0  pyhd8ed1ab_0         conda-forge      17kB
  + importlib-resources                5.12.0  pyhd8ed1ab_0         conda-forge       9kB
  + click                               8.1.7  unix_pyh707e725_0    conda-forge      84kB
  + fonts-conda-ecosystem                   1  0                    conda-forge       4kB
  + pytest                              7.4.2  pyhd8ed1ab_0         conda-forge     245kB
  + pytest-runner                       6.0.0  pyhd8ed1ab_0         conda-forge      11kB
  + numpy                              1.26.0  py39h474f0d3_0       conda-forge       7MB
  + unicodedata2                       15.1.0  py39hd1e30aa_0       conda-forge     374kB
  + glib                               2.78.0  hfc55251_0           conda-forge     491kB
  + pillow                             10.0.1  py39h444a776_1       conda-forge      46MB
  + kiwisolver                          1.4.5  py39h7633fee_1       conda-forge      73kB
  + pmw                                 2.0.1  py39hf3d152e_1008    conda-forge     524kB
  + pydantic-core                      2.10.1  py39h9fdd4d6_0       conda-forge       2MB
  + sip                                6.7.11  py39h3d6467e_1       conda-forge     490kB
  + cairo                              1.16.0  hbbf8b49_1016        conda-forge       1MB
  + contourpy                           1.1.1  py39h7633fee_1       conda-forge     224kB
  + pyerfa                            2.0.0.3  py39h44dd56e_1       conda-forge     354kB
  + scipy                              1.11.3  py39h474f0d3_1       conda-forge      15MB
  + iminuit                            2.24.0  py39h3d6467e_0       conda-forge     413kB
  + fonttools                          4.43.1  py39hd1e30aa_0       conda-forge       2MB
  + gstreamer                          1.22.5  h98fc4e7_0           conda-forge       2MB
  + pyqt5-sip                         12.12.2  py39h3d6467e_5       conda-forge      85kB
  + harfbuzz                            7.3.0  hdb3a94d_0           conda-forge       1MB
  + astropy                             5.3.4  py39h44dd56e_2       conda-forge       8MB
  + matplotlib-base                     3.8.0  py39he9076e7_1       conda-forge       7MB
  + gst-plugins-base                   1.22.5  hf7dbed1_0           conda-forge       3MB
  + regions                               0.7  py39h44dd56e_3       conda-forge     296kB
  + healpy                             1.16.1  py39hbafa5a2_2       conda-forge       4MB
  + qt-main                            5.15.8  h7fe3ca9_15          conda-forge      61MB
  + pyqt                               5.15.9  py39h52134e7_5       conda-forge       5MB
  + matplotlib                          3.8.0  py39hf3d152e_2       conda-forge       8kB
  + pydantic                            2.4.2  pyhd8ed1ab_0         conda-forge     275kB
  + fermitools                          2.2.0  py39h93a0a19_0       fermi            94MB
  + gammapy                               1.1  py39h0f8d45d_0       conda-forge       1MB

  Upgrade:
───────────────────────────────────────────────────────────────────────────────────────────

  - libsqlite                          3.42.0  h2797004_0           conda-forge          
  + libsqlite                          3.43.2  h2797004_0           conda-forge     840kB
  - openssl                             3.1.1  hd590300_1           conda-forge          
  + openssl                             3.1.3  hd590300_0           conda-forge       3MB
  - python                             3.9.16  h2782a2a_0_cpython   conda-forge          
  + python                             3.9.18  h0755675_0_cpython   conda-forge      24MB
  - pip                                23.1.2  pyhd8ed1ab_0         conda-forge          
  + pip                                23.2.1  pyhd8ed1ab_0         conda-forge       1MB

  Summary:

  Install: 140 packages
  Upgrade: 4 packages

  Total download: 934MB

───────────────────────────────────────────────────────────────────────────────────────────



Downloading and Extracting Packages

Preparing transaction: ...working... done
Verifying transaction: ...working... done
Executing transaction: ...working... done
Installing pip dependencies: ...working... Ran pip subprocess with arguments:
['/srv/conda/envs/notebook/bin/python', '-m', 'pip', 'install', '-U', '-r', '/home/jovyan/condaenv.rqcgi6ru.requirements.txt', '--exists-action=b']
Pip subprocess output:
Collecting fermipy (from -r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1))
  Downloading fermipy-1.2.0-py3-none-any.whl (45.8 MB)
     ���������������������������������������� 45.8/45.8 MB 3.5 MB/s eta 0:00:00
Collecting gdown (from -r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 2))
  Downloading gdown-4.7.1-py3-none-any.whl (15 kB)
Requirement already satisfied: numpy>=1.16 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (1.26.0)
Requirement already satisfied: pyyaml in /srv/conda/envs/notebook/lib/python3.9/site-packages (from fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (6.0)
Requirement already satisfied: scipy in /srv/conda/envs/notebook/lib/python3.9/site-packages (from fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (1.11.3)
Requirement already satisfied: astropy in /srv/conda/envs/notebook/lib/python3.9/site-packages (from fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (5.3.4)
Requirement already satisfied: matplotlib>=3.3 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (3.8.0)
Requirement already satisfied: gammapy>=0.18 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (1.1)
Requirement already satisfied: healpy in /srv/conda/envs/notebook/lib/python3.9/site-packages (from fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (1.16.1)
Collecting astropy-healpix (from fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1))
  Obtaining dependency information for astropy-healpix from https://files.pythonhosted.org/packages/1f/5b/519412b0e0c1c61183d3dcb982206f3ffd3411bed3a6efdad395844bbb71/astropy_healpix-1.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata
  Downloading astropy_healpix-1.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.1 kB)
Collecting filelock (from gdown->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 2))
  Obtaining dependency information for filelock from https://files.pythonhosted.org/packages/5e/5d/97afbafd9d584ff1b45fcb354a479a3609bd97f912f8f1f6c563cb1fae21/filelock-3.12.4-py3-none-any.whl.metadata
  Downloading filelock-3.12.4-py3-none-any.whl.metadata (2.8 kB)
Requirement already satisfied: requests[socks] in /srv/conda/envs/notebook/lib/python3.9/site-packages (from gdown->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 2)) (2.31.0)
Requirement already satisfied: six in /srv/conda/envs/notebook/lib/python3.9/site-packages (from gdown->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 2)) (1.16.0)
Collecting tqdm (from gdown->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 2))
  Obtaining dependency information for tqdm from https://files.pythonhosted.org/packages/00/e5/f12a80907d0884e6dff9c16d0c0114d81b8cd07dc3ae54c5e962cc83037e/tqdm-4.66.1-py3-none-any.whl.metadata
  Downloading tqdm-4.66.1-py3-none-any.whl.metadata (57 kB)
     ��������������������������������������� 57.6/57.6 kB 179.7 kB/s eta 0:00:00
Requirement already satisfied: beautifulsoup4 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from gdown->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 2)) (4.12.2)
Requirement already satisfied: regions>=0.5.0 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from gammapy>=0.18->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (0.7)
Requirement already satisfied: click>=7.0 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from gammapy>=0.18->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (8.1.7)
Requirement already satisfied: pydantic>=1.4 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from gammapy>=0.18->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (2.4.2)
Requirement already satisfied: iminuit>=2.8.0 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from gammapy>=0.18->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (2.24.0)
Requirement already satisfied: pyerfa>=2.0 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from astropy->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (2.0.0.3)
Requirement already satisfied: packaging>=19.0 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from astropy->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (23.1)
Requirement already satisfied: contourpy>=1.0.1 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from matplotlib>=3.3->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (1.1.1)
Requirement already satisfied: cycler>=0.10 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from matplotlib>=3.3->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (0.12.1)
Requirement already satisfied: fonttools>=4.22.0 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from matplotlib>=3.3->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (4.43.1)
Requirement already satisfied: kiwisolver>=1.0.1 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from matplotlib>=3.3->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (1.4.5)
Requirement already satisfied: pillow>=6.2.0 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from matplotlib>=3.3->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (10.0.1)
Requirement already satisfied: pyparsing>=2.3.1 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from matplotlib>=3.3->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (3.1.1)
Requirement already satisfied: python-dateutil>=2.7 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from matplotlib>=3.3->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (2.8.2)
Requirement already satisfied: importlib-resources>=3.2.0 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from matplotlib>=3.3->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (5.12.0)
Requirement already satisfied: soupsieve>1.2 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from beautifulsoup4->gdown->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 2)) (2.3.2.post1)
Requirement already satisfied: charset-normalizer<4,>=2 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from requests[socks]->gdown->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 2)) (3.1.0)
Requirement already satisfied: idna<4,>=2.5 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from requests[socks]->gdown->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 2)) (3.4)
Requirement already satisfied: urllib3<3,>=1.21.1 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from requests[socks]->gdown->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 2)) (2.0.3)
Requirement already satisfied: certifi>=2017.4.17 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from requests[socks]->gdown->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 2)) (2023.5.7)
Requirement already satisfied: PySocks!=1.5.7,>=1.5.6 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from requests[socks]->gdown->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 2)) (1.7.1)
Requirement already satisfied: zipp>=3.1.0 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from importlib-resources>=3.2.0->matplotlib>=3.3->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (3.15.0)
Requirement already satisfied: annotated-types>=0.4.0 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from pydantic>=1.4->gammapy>=0.18->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (0.6.0)
Requirement already satisfied: pydantic-core==2.10.1 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from pydantic>=1.4->gammapy>=0.18->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (2.10.1)
Requirement already satisfied: typing-extensions>=4.6.1 in /srv/conda/envs/notebook/lib/python3.9/site-packages (from pydantic>=1.4->gammapy>=0.18->fermipy->-r /home/jovyan/condaenv.rqcgi6ru.requirements.txt (line 1)) (4.6.3)
Downloading astropy_healpix-1.0.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (195 kB)
   ��������������������������������������� 195.8/195.8 kB 166.2 kB/s eta 0:00:00
Downloading filelock-3.12.4-py3-none-any.whl (11 kB)
Downloading tqdm-4.66.1-py3-none-any.whl (78 kB)
   ���������������������������������������� 78.3/78.3 kB 935.6 kB/s eta 0:00:00
Installing collected packages: tqdm, filelock, gdown, astropy-healpix, fermipy
Successfully installed astropy-healpix-1.0.0 fermipy-1.2.0 filelock-3.12.4 gdown-4.7.1 tqdm-4.66.1

done
#
# To activate this environment, use
#
#     $ conda activate /srv/conda/envs/notebook
#
# To deactivate an active environment, use
#
#     $ conda deactivate

�[91mtime: 821.482
�[0mWill remove 1 package cache(s).
�[91mtime: 7.210
�[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
aiofiles                  22.1.0             pyhd8ed1ab_0    conda-forge
aiosqlite                 0.19.0             pyhd8ed1ab_0    conda-forge
alembic                   1.11.1             pyhd8ed1ab_0    conda-forge
alsa-lib                  1.2.9                hd590300_0    conda-forge
annotated-types           0.6.0              pyhd8ed1ab_0    conda-forge
anyio                     3.7.0              pyhd8ed1ab_1    conda-forge
argon2-cffi               21.3.0             pyhd8ed1ab_0    conda-forge
argon2-cffi-bindings      21.2.0           py39hb9d737c_3    conda-forge
astropy                   5.3.4            py39h44dd56e_2    conda-forge
astropy-healpix           1.0.0                    pypi_0    pypi
asttokens                 2.2.1              pyhd8ed1ab_0    conda-forge
async_generator           1.10                       py_0    conda-forge
attr                      2.5.1                h166bdaf_1    conda-forge
attrs                     23.1.0             pyh71513ae_1    conda-forge
babel                     2.12.1             pyhd8ed1ab_1    conda-forge
backcall                  0.2.0              pyh9f0ad1d_0    conda-forge
backports                 1.0                pyhd8ed1ab_3    conda-forge
backports.functools_lru_cache 1.6.4              pyhd8ed1ab_0    conda-forge
beautifulsoup4            4.12.2             pyha770c72_0    conda-forge
bleach                    6.0.0              pyhd8ed1ab_0    conda-forge
blinker                   1.6.2              pyhd8ed1ab_0    conda-forge
brotli                    1.0.9                h166bdaf_8    conda-forge
brotli-bin                1.0.9                h166bdaf_8    conda-forge
bzip2                     1.0.8                h7f98852_4    conda-forge
c-ares                    1.20.1               hd590300_0    conda-forge
ca-certificates           2023.5.7             hbcca054_0    conda-forge
cairo                     1.16.0            hbbf8b49_1016    conda-forge
certifi                   2023.5.7           pyhd8ed1ab_0    conda-forge
certipy                   0.1.3                      py_0    conda-forge
cffi                      1.15.1           py39he91dace_3    conda-forge
cfitsio                   4.1.0                hd9d235c_0    conda-forge
charset-normalizer        3.1.0              pyhd8ed1ab_0    conda-forge
clhep                     2.4.5.3              h27087fc_0    conda-forge
click                     8.1.7           unix_pyh707e725_0    conda-forge
colorama                  0.4.6              pyhd8ed1ab_0    conda-forge
comm                      0.1.3              pyhd8ed1ab_0    conda-forge
contourpy                 1.1.1            py39h7633fee_1    conda-forge
cppunit                   1.15.1               h9c3ff4c_0    conda-forge
cryptography              41.0.1           py39hd4f0224_0    conda-forge
cycler                    0.12.1             pyhd8ed1ab_0    conda-forge
dbus                      1.13.6               h5008d03_3    conda-forge
debugpy                   1.6.7            py39h227be39_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
exceptiongroup            1.1.1              pyhd8ed1ab_0    conda-forge
executing                 1.2.0              pyhd8ed1ab_0    conda-forge
expat                     2.5.0                hcb278e6_1    conda-forge
f2c                       20210323183018    h166bdaf_1010    conda-forge
fermipy                   1.2.0                    pypi_0    pypi
fermitools                2.2.0            py39h93a0a19_0    fermi
fermitools-data           0.18                          0    fermi
fftw                      3.3.10          nompi_hc118613_108    conda-forge
filelock                  3.12.4                   pypi_0    pypi
flit-core                 3.9.0              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.2               h14ed4e7_0    conda-forge
fonts-conda-ecosystem     1                             0    conda-forge
fonts-conda-forge         1                             0    conda-forge
fonttools                 4.43.1           py39hd1e30aa_0    conda-forge
freetype                  2.12.1               h267a509_2    conda-forge
gammapy                   1.1              py39h0f8d45d_0    conda-forge
gdown                     4.7.1                    pypi_0    pypi
gettext                   0.21.1               h27087fc_0    conda-forge
glib                      2.78.0               hfc55251_0    conda-forge
glib-tools                2.78.0               hfc55251_0    conda-forge
graphite2                 1.3.13            h58526e2_1001    conda-forge
greenlet                  2.0.2            py39h3d6467e_1    conda-forge
gsl                       2.7                  he838d99_0    conda-forge
gst-plugins-base          1.22.5               hf7dbed1_0    conda-forge
gstreamer                 1.22.5               h98fc4e7_0    conda-forge
harfbuzz                  7.3.0                hdb3a94d_0    conda-forge
healpix_cxx               3.31              h268b298_1007    conda-forge
healpy                    1.16.1           py39hbafa5a2_2    conda-forge
icu                       72.1                 hcb278e6_0    conda-forge
idna                      3.4                pyhd8ed1ab_0    conda-forge
iminuit                   2.24.0           py39h3d6467e_0    conda-forge
importlib-metadata        6.6.0              pyha770c72_0    conda-forge
importlib-resources       5.12.0             pyhd8ed1ab_0    conda-forge
importlib_metadata        6.6.0                hd8ed1ab_0    conda-forge
importlib_resources       5.12.0             pyhd8ed1ab_0    conda-forge
iniconfig                 2.0.0              pyhd8ed1ab_0    conda-forge
ipykernel                 6.23.1             pyh210e3f2_0    conda-forge
ipython                   8.14.0             pyh41d4057_0    conda-forge
ipython_genutils          0.2.0                      py_1    conda-forge
ipywidgets                8.0.6              pyhd8ed1ab_0    conda-forge
jedi                      0.18.2             pyhd8ed1ab_0    conda-forge
jinja2                    3.1.2              pyhd8ed1ab_1    conda-forge
json5                     0.9.5              pyh9f0ad1d_0    conda-forge
jsonschema                4.17.3             pyhd8ed1ab_0    conda-forge
jupyter-offlinenotebook   0.2.2              pyh1d7be83_0    conda-forge
jupyter-resource-usage    0.7.1              pyhd8ed1ab_0    conda-forge
jupyter_client            8.2.0              pyhd8ed1ab_0    conda-forge
jupyter_core              5.3.0            py39hf3d152e_0    conda-forge
jupyter_events            0.6.3              pyhd8ed1ab_0    conda-forge
jupyter_server            1.23.6             pyhd8ed1ab_0    conda-forge
jupyter_server_fileid     0.9.0              pyhd8ed1ab_0    conda-forge
jupyter_server_ydoc       0.8.0              pyhd8ed1ab_0    conda-forge
jupyter_telemetry         0.1.0              pyhd8ed1ab_1    conda-forge
jupyter_ydoc              0.2.4              pyhd8ed1ab_0    conda-forge
jupyterhub-base           3.1.1              pyh2a2186d_0    conda-forge
jupyterhub-singleuser     3.1.1              pyh2a2186d_0    conda-forge
jupyterlab                3.6.4              pyhd8ed1ab_0    conda-forge
jupyterlab_pygments       0.2.2              pyhd8ed1ab_0    conda-forge
jupyterlab_server         2.22.1             pyhd8ed1ab_0    conda-forge
jupyterlab_widgets        3.0.7              pyhd8ed1ab_1    conda-forge
keyutils                  1.6.1                h166bdaf_0    conda-forge
kiwisolver                1.4.5            py39h7633fee_1    conda-forge
krb5                      1.21.2               h659d440_0    conda-forge
lame                      3.100             h166bdaf_1003    conda-forge
lcms2                     2.15                 h7f713cb_2    conda-forge
ld_impl_linux-64          2.40                 h41732ed_0    conda-forge
lerc                      4.0.0                h27087fc_0    conda-forge
libblas                   3.9.0           18_linux64_openblas    conda-forge
libbrotlicommon           1.0.9                h166bdaf_8    conda-forge
libbrotlidec              1.0.9                h166bdaf_8    conda-forge
libbrotlienc              1.0.9                h166bdaf_8    conda-forge
libcap                    2.69                 h0f662aa_0    conda-forge
libcblas                  3.9.0           18_linux64_openblas    conda-forge
libclang                  15.0.7          default_h7634d5b_3    conda-forge
libclang13                15.0.7          default_h9986a30_3    conda-forge
libcups                   2.3.3                h4637d8d_4    conda-forge
libcurl                   8.4.0                hca28451_0    conda-forge
libdeflate                1.19                 hd590300_0    conda-forge
libedit                   3.1.20191231         he28a2e2_2    conda-forge
libev                     4.33                 h516909a_1    conda-forge
libevent                  2.1.12               hf998b51_1    conda-forge
libexpat                  2.5.0                hcb278e6_1    conda-forge
libffi                    3.4.2                h7f98852_5    conda-forge
libflac                   1.4.3                h59595ed_0    conda-forge
libgcc-ng                 13.1.0               he5830b7_0    conda-forge
libgcrypt                 1.10.1               h166bdaf_0    conda-forge
libgfortran-ng            13.2.0               h69a702a_0    conda-forge
libgfortran5              13.2.0               ha4646dd_0    conda-forge
libglib                   2.78.0               hebfc3b9_0    conda-forge
libgomp                   13.1.0               he5830b7_0    conda-forge
libgpg-error              1.47                 h71f35ed_0    conda-forge
libiconv                  1.17                 h166bdaf_0    conda-forge
libjpeg-turbo             2.1.5.1              hd590300_1    conda-forge
liblapack                 3.9.0           18_linux64_openblas    conda-forge
libllvm15                 15.0.7               h5cf9203_3    conda-forge
libnghttp2                1.52.0               h61bc06f_0    conda-forge
libnsl                    2.0.0                h7f98852_0    conda-forge
libogg                    1.3.4                h7f98852_1    conda-forge
libopenblas               0.3.24          pthreads_h413a1c8_0    conda-forge
libopus                   1.3.1                h7f98852_1    conda-forge
libpng                    1.6.39               h753d276_0    conda-forge
libpq                     15.4                 hfc447b1_2    conda-forge
libsndfile                1.2.2                hc60ed4a_1    conda-forge
libsodium                 1.0.18               h36c2ea0_1    conda-forge
libsqlite                 3.43.2               h2797004_0    conda-forge
libssh2                   1.11.0               h0841786_0    conda-forge
libstdcxx-ng              13.1.0               hfd8a6a1_0    conda-forge
libsystemd0               254                  h3516f8a_0    conda-forge
libtiff                   4.6.0                h29866fb_1    conda-forge
libuuid                   2.38.1               h0b41bf4_0    conda-forge
libuv                     1.44.2               h166bdaf_0    conda-forge
libvorbis                 1.3.7                h9c3ff4c_0    conda-forge
libwebp-base              1.3.2                hd590300_0    conda-forge
libxcb                    1.15                 h0b41bf4_0    conda-forge
libxkbcommon              1.6.0                h5d7e998_0    conda-forge
libxml2                   2.11.5               h0d562d8_0    conda-forge
libzlib                   1.2.13               h166bdaf_4    conda-forge
lz4-c                     1.9.4                hcb278e6_0    conda-forge
mako                      1.2.4              pyhd8ed1ab_0    conda-forge
markupsafe                2.1.3            py39hd1e30aa_0    conda-forge
matplotlib                3.8.0            py39hf3d152e_2    conda-forge
matplotlib-base           3.8.0            py39he9076e7_1    conda-forge
matplotlib-inline         0.1.6              pyhd8ed1ab_0    conda-forge
mistune                   2.0.5              pyhd8ed1ab_0    conda-forge
mpg123                    1.32.3               h59595ed_0    conda-forge
munkres                   1.1.4              pyh9f0ad1d_0    conda-forge
mysql-common              8.0.33               hf1915f5_5    conda-forge
mysql-libs                8.0.33               hca2cd23_5    conda-forge
nbclassic                 1.0.0              pyhb4ecaf3_1    conda-forge
nbclient                  0.8.0              pyhd8ed1ab_0    conda-forge
nbconvert                 7.4.0              pyhd8ed1ab_0    conda-forge
nbconvert-core            7.4.0              pyhd8ed1ab_0    conda-forge
nbconvert-pandoc          7.4.0              pyhd8ed1ab_0    conda-forge
nbformat                  5.9.0              pyhd8ed1ab_0    conda-forge
ncurses                   6.4                  hcb278e6_0    conda-forge
nest-asyncio              1.5.6              pyhd8ed1ab_0    conda-forge
nodejs                    18.15.0              h4abf6b9_1    conda-forge
notebook                  6.5.4              pyha770c72_0    conda-forge
notebook-shim             0.2.3              pyhd8ed1ab_0    conda-forge
nspr                      4.35                 h27087fc_0    conda-forge
nss                       3.94                 h1d7d5a4_0    conda-forge
numpy                     1.26.0           py39h474f0d3_0    conda-forge
oauthlib                  3.2.2              pyhd8ed1ab_0    conda-forge
openjpeg                  2.5.0                h488ebb8_3    conda-forge
openssl                   3.1.3                hd590300_0    conda-forge
packaging                 23.1               pyhd8ed1ab_0    conda-forge
pamela                    1.0.0                      py_0    conda-forge
pandoc                    2.19.2               h32600fe_2    conda-forge
pandocfilters             1.5.0              pyhd8ed1ab_0    conda-forge
parso                     0.8.3              pyhd8ed1ab_0    conda-forge
pcre2                     10.40                hc3806b6_0    conda-forge
pexpect                   4.8.0              pyh1a96a4e_2    conda-forge
pgplot                    5.2.2             hf4b3394_1008    conda-forge
pickleshare               0.7.5                   py_1003    conda-forge
pillow                    10.0.1           py39h444a776_1    conda-forge
pip                       23.2.1             pyhd8ed1ab_0    conda-forge
pixman                    0.42.2               h59595ed_0    conda-forge
pkgutil-resolve-name      1.3.10             pyhd8ed1ab_0    conda-forge
platformdirs              3.5.1              pyhd8ed1ab_0    conda-forge
pluggy                    1.3.0              pyhd8ed1ab_0    conda-forge
ply                       3.11                       py_1    conda-forge
pmw                       2.0.1           py39hf3d152e_1008    conda-forge
prometheus_client         0.17.0             pyhd8ed1ab_0    conda-forge
prompt-toolkit            3.0.38             pyha770c72_0    conda-forge
prompt_toolkit            3.0.38               hd8ed1ab_0    conda-forge
psutil                    5.9.5            py39h72bdee0_0    conda-forge
pthread-stubs             0.4               h36c2ea0_1001    conda-forge
ptyprocess                0.7.0              pyhd3deb0d_0    conda-forge
pulseaudio-client         16.1                 hb77b528_5    conda-forge
pure_eval                 0.2.2              pyhd8ed1ab_0    conda-forge
pycparser                 2.21               pyhd8ed1ab_0    conda-forge
pydantic                  2.4.2              pyhd8ed1ab_0    conda-forge
pydantic-core             2.10.1           py39h9fdd4d6_0    conda-forge
pyerfa                    2.0.0.3          py39h44dd56e_1    conda-forge
pygments                  2.15.1             pyhd8ed1ab_0    conda-forge
pyjwt                     2.7.0              pyhd8ed1ab_0    conda-forge
pyopenssl                 23.2.0             pyhd8ed1ab_1    conda-forge
pyparsing                 3.1.1              pyhd8ed1ab_0    conda-forge
pyqt                      5.15.9           py39h52134e7_5    conda-forge
pyqt5-sip                 12.12.2          py39h3d6467e_5    conda-forge
pyrsistent                0.19.3           py39h72bdee0_0    conda-forge
pysocks                   1.7.1              pyha2e5f31_6    conda-forge
pytest                    7.4.2              pyhd8ed1ab_0    conda-forge
pytest-runner             6.0.0              pyhd8ed1ab_0    conda-forge
python                    3.9.18          h0755675_0_cpython    conda-forge
python-dateutil           2.8.2              pyhd8ed1ab_0    conda-forge
python-fastjsonschema     2.17.1             pyhd8ed1ab_0    conda-forge
python-json-logger        2.0.7              pyhd8ed1ab_0    conda-forge
python_abi                3.9                      3_cp39    conda-forge
pytz                      2023.3             pyhd8ed1ab_0    conda-forge
pyyaml                    6.0              py39hb9d737c_5    conda-forge
pyzmq                     25.1.0           py39hb257651_0    conda-forge
qt-main                   5.15.8              h7fe3ca9_15    conda-forge
readline                  8.2                  h8228510_1    conda-forge
regions                   0.7              py39h44dd56e_3    conda-forge
requests                  2.31.0             pyhd8ed1ab_0    conda-forge
rfc3339-validator         0.1.4              pyhd8ed1ab_0    conda-forge
rfc3986-validator         0.1.1              pyh9f0ad1d_0    conda-forge
ruamel.yaml               0.17.31          py39hd1e30aa_0    conda-forge
ruamel.yaml.clib          0.2.7            py39h72bdee0_1    conda-forge
scipy                     1.11.3           py39h474f0d3_1    conda-forge
send2trash                1.8.2              pyh41d4057_0    conda-forge
setuptools                67.7.2             pyhd8ed1ab_0    conda-forge
sip                       6.7.11           py39h3d6467e_1    conda-forge
six                       1.16.0             pyh6c4a22f_0    conda-forge
sniffio                   1.3.0              pyhd8ed1ab_0    conda-forge
soupsieve                 2.3.2.post1        pyhd8ed1ab_0    conda-forge
sqlalchemy                2.0.15           py39hd1e30aa_0    conda-forge
stack_data                0.6.2              pyhd8ed1ab_0    conda-forge
terminado                 0.17.1             pyh41d4057_0    conda-forge
tinycss2                  1.2.1              pyhd8ed1ab_0    conda-forge
tk                        8.6.12               h27826a3_0    conda-forge
toml                      0.10.2             pyhd8ed1ab_0    conda-forge
tomli                     2.0.1              pyhd8ed1ab_0    conda-forge
tornado                   6.3.2            py39hd1e30aa_0    conda-forge
tqdm                      4.66.1                   pypi_0    pypi
traitlets                 5.9.0              pyhd8ed1ab_0    conda-forge
typing-extensions         4.6.3                hd8ed1ab_0    conda-forge
typing_extensions         4.6.3              pyha770c72_0    conda-forge
tzdata                    2023c                h71feb2d_0    conda-forge
unicodedata2              15.1.0           py39hd1e30aa_0    conda-forge
urllib3                   2.0.3              pyhd8ed1ab_0    conda-forge
wcslib                    7.12                 h6195f97_0    conda-forge
wcwidth                   0.2.6              pyhd8ed1ab_0    conda-forge
webencodings              0.5.1                      py_1    conda-forge
websocket-client          1.5.2              pyhd8ed1ab_0    conda-forge
wheel                     0.40.0             pyhd8ed1ab_0    conda-forge
widgetsnbextension        4.0.7              pyhd8ed1ab_0    conda-forge
xcb-util                  0.4.0                hd590300_1    conda-forge
xcb-util-image            0.4.0                h8ee46fc_1    conda-forge
xcb-util-keysyms          0.4.0                h8ee46fc_1    conda-forge
xcb-util-renderutil       0.3.9                hd590300_1    conda-forge
xcb-util-wm               0.4.1                h8ee46fc_1    conda-forge
xerces-c                  3.2.4                h8d71039_2    conda-forge
xkeyboard-config          2.40                 hd590300_0    conda-forge
xorg-kbproto              1.0.7             h7f98852_1002    conda-forge
xorg-libice               1.1.1                hd590300_0    conda-forge
xorg-libsm                1.2.4                h7391055_0    conda-forge
xorg-libx11               1.8.7                h8ee46fc_0    conda-forge
xorg-libxau               1.0.11               hd590300_0    conda-forge
xorg-libxdmcp             1.1.3                h7f98852_0    conda-forge
xorg-libxext              1.3.4                h0b41bf4_2    conda-forge
xorg-libxrender           0.9.11               hd590300_0    conda-forge
xorg-renderproto          0.11.1            h7f98852_1002    conda-forge
xorg-xextproto            7.3.0             h0b41bf4_1003    conda-forge
xorg-xf86vidmodeproto     2.3.1             h7f98852_1002    conda-forge
xorg-xproto               7.0.31            h7f98852_1007    conda-forge
xz                        5.2.6                h166bdaf_0    conda-forge
y-py                      0.5.9            py39h50f1755_0    conda-forge
yaml                      0.2.5                h7f98852_2    conda-forge
ypy-websocket             0.8.2              pyhd8ed1ab_0    conda-forge
zeromq                    4.3.4                h9c3ff4c_1    conda-forge
zipp                      3.15.0             pyhd8ed1ab_0    conda-forge
zlib                      1.2.13               h166bdaf_4    conda-forge
zstd                      1.5.5                hfc55251_0    conda-forge
Removing intermediate container 048b18990976
 ---> 1f021bc10eed
Step 40/50 : USER root
 ---> Running in 7d0dddb5a074
Removing intermediate container 7d0dddb5a074
 ---> ae70d7556e3d
Step 41/50 : COPY --chown=1000:1000 src/ ${REPO_DIR}/
 ---> 6c8ae52baeb3
Step 42/50 : LABEL repo2docker.ref="5dafaa797b46cef9f5e1a9c9917ffa4b805aaf45"
 ---> Running in ae0f6138dd06
Removing intermediate container ae0f6138dd06
 ---> f66410c73024
Step 43/50 : LABEL repo2docker.repo="https://github.com/arnimtest/PHYS2015_2023"
 ---> Running in 3eb286ad07b9
Removing intermediate container 3eb286ad07b9
 ---> 3712c755f848
Step 44/50 : LABEL repo2docker.version="2023.06.0+8.gd414e99"
 ---> Running in 25a98b53b65b
Removing intermediate container 25a98b53b65b
 ---> 49e99eb2fba0
Step 45/50 : USER ${NB_USER}
 ---> Running in b66c715b318e
Removing intermediate container b66c715b318e
 ---> 1dc2df110de2
Step 46/50 : ENV PYTHONUNBUFFERED=1
 ---> Running in 928a6b5f81d6
Removing intermediate container 928a6b5f81d6
 ---> 64c32148da05
Step 47/50 : COPY /python3-login /usr/local/bin/python3-login
 ---> ef4c775c227d
Step 48/50 : COPY /repo2docker-entrypoint /usr/local/bin/repo2docker-entrypoint
 ---> ae624ccc3b49
Step 49/50 : ENTRYPOINT ["/usr/local/bin/repo2docker-entrypoint"]
 ---> Running in c9d04f3b3eaa
Removing intermediate container c9d04f3b3eaa
 ---> c2a9fc52f0f7
Step 50/50 : CMD ["jupyter", "notebook", "--ip", "0.0.0.0"]
 ---> Running in 63ba1b66a4b9
Removing intermediate container 63ba1b66a4b9
 ---> 6f9b75493599
{"aux": {"ID": "sha256:6f9b75493599df61e4a620dd6453876345cf9d9f453838c2cf82b621fb2e7f37"}}Successfully built 6f9b75493599
Successfully tagged gesiscss/binder-r2d-g5b5b759-arnimtest-2dphys2015-5f2023-fd7fc4:5dafaa797b46cef9f5e1a9c9917ffa4b805aaf45
Error during build: UnixHTTPConnectionPool(host='localhost', port=None): Read timed out.
@arnim
Copy link
Member Author

arnim commented Oct 13, 2023

next one

{"aux": {"ID": "sha256:85d1d6d178b343d53920abd5391d5f56d4a284b430cbe77756c49eaed0680fd7"}}[Warning] One or more build-args [NB_UID NB_USER] were not consumed
Successfully built 85d1d6d178b3
Successfully tagged gesiscss/binder-r2d-g5b5b759-arnimtest-2dforcefieldx-c55d08:03ad3f16d79e0a2bdc36aa16f487c8e5268f37c8
Error during build: UnixHTTPConnectionPool(host='localhost', port=None): Read timed out.

@arnim
Copy link
Member Author

arnim commented Oct 13, 2023

and

Step 55/55 : CMD ["jupyter", "notebook", "--ip", "0.0.0.0"]
 ---> Running in 2912b5164058
Removing intermediate container 2912b5164058
 ---> 5cc2204ed3a5
{"aux": {"ID": "sha256:5cc2204ed3a51d46bca73ab4c89498684104219cf8906b04f3eff23e9e36e281"}}Successfully built 5cc2204ed3a5
Successfully tagged gesiscss/binder-r2d-g5b5b759-arnimtest-2dohiocsoverview-6d6e76:6584cfd5cd6ac8a9ec0f5fd03751c43bc51cecfc
Error during build: UnixHTTPConnectionPool(host='localhost', port=None): Read timed out.

@arnim
Copy link
Member Author

arnim commented Oct 13, 2023

and

Removing intermediate container 8b6d8d8177bc
 ---> 37db22715da8
{"aux": {"ID": "sha256:37db22715da838ab953e1303547d70738da193e982a5b0536c8a0db100825f72"}}Successfully built 37db22715da8
Successfully tagged gesiscss/binder-r2d-g5b5b759-arnimtest-2dopenvino-5fnotebooks-a58753:f686af038da41dbd64065aba3b05737a715f434b
Error during build: UnixHTTPConnectionPool(host='localhost', port=None): Read timed out.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant