File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3939 "customizations" : {
4040 "codespaces" : {
4141 "openFiles" : [
42- " README.md "
42+ " lessons/10_Module_1/10_Getting_Started.ipynb "
4343 ]
4444 },
4545 "vscode" : {
4848 " ms-python.debugpy" ,
4949 " ms-python.isort" ,
5050 " ms-toolsai.jupyter" ,
51- " https://github.com/league-infrastructure/league-vscode-ext/releases/download/v1.20250530.2/ jtl-syllabus-v1.20250530.2.vsix "
51+ " jointheleague. jtl-syllabus"
5252 ],
5353 "settings" : {
5454 "python.defaultInterpreterPath" : " /usr/local/bin/python" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- ext_url= ' https://github.com/league-infrastructure/league-vscode-ext/releases/download/v1.20250530.2/jtl-syllabus-v1.20250530.2.vsix '
4- ext_path=/vscode/extensionsCache/jtl-syllabus.vsix
3+ # Update pip to the latest version
4+ python3 -m pip install --upgrade pip
55
6- # Download the extension
7- curl -L -o " $ext_path " " $ext_url "
8- if [ -f " $ext_path " ]; then
9- echo " Downloaded JTL Syllabus extension to $ext_path "
6+ # Check if requirements.txt exists in the root of the workspace
7+ if [ -f " requirements.txt" ]; then
8+ pip3 install -r requirements.txt
109
1110else
12- echo " Failed to download JTL Syllabus extension."
13- fi
1411
15- # Install the Python package regardless
16- pipx install jtl-syllabus
You can’t perform that action at this time.
0 commit comments