From 7ef64dbd951d019249e4fec1e30159e32b190539 Mon Sep 17 00:00:00 2001 From: Andrey Nikitin Date: Tue, 7 Apr 2026 14:50:31 +0100 Subject: [PATCH 1/2] issue #codio-17405. install jupyter-codio-extension one-click. --- jupyter-codio-extension/playbook.yaml | 29 +++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/jupyter-codio-extension/playbook.yaml b/jupyter-codio-extension/playbook.yaml index ac6a6ec..1c58712 100644 --- a/jupyter-codio-extension/playbook.yaml +++ b/jupyter-codio-extension/playbook.yaml @@ -4,19 +4,32 @@ become_user: root tasks: - - name: "Install Jupyter Notebook Codio extension" - command: /usr/share/codio-tools/jupyter-codio-extension/scripts/installer/jupyter-codio-extension-installer --mode=notebook - become: yes - become_user: codio - become_method: su - become_flags: -l + # - name: "Install Jupyter Notebook Codio extension" + # command: /usr/share/codio-tools/jupyter-codio-extension/scripts/installer/jupyter-codio-extension-installer --mode=notebook + # become: yes + # become_user: codio + # become_method: su + # become_flags: -l + + # - name: "Install Jupyter Lab Codio extension" + # command: /usr/share/codio-tools/jupyter-codio-extension/scripts/installer/jupyter-codio-extension-installer + # become: yes + # become_user: codio + # become_method: su + # become_flags: -l - - name: "Install Jupyter Lab Codio extension" - command: /usr/share/codio-tools/jupyter-codio-extension/scripts/installer/jupyter-codio-extension-installer + - name: Installing jupyter-collaboration-codio + pip: + name: jupyterlab-v4-codio-ext + state: present + version: 0.1.17 become: yes become_user: codio become_method: su become_flags: -l + register: aptout + + - debug: var=aptout - name: "Restart Jupyter" systemd: From 634a1796427092920e3388d177e0be2e4faa8d97 Mon Sep 17 00:00:00 2001 From: Andrey Nikitin Date: Thu, 9 Apr 2026 10:51:53 +0100 Subject: [PATCH 2/2] use extra index url for install jupyter-collaboration --- jupyter-collaboration/playbook.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyter-collaboration/playbook.yaml b/jupyter-collaboration/playbook.yaml index 30d2dbf..88f67af 100644 --- a/jupyter-collaboration/playbook.yaml +++ b/jupyter-collaboration/playbook.yaml @@ -8,7 +8,7 @@ - name: Installing jupyter-collaboration-codio pip: name: jupyter-collaboration-codio - extra_args: -i https://test.pypi.org/simple/ + extra_args: -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ state: present version: 4.1.2rc2 become: yes