Update to install tkinter

This commit is contained in:
adamoutler
2023-03-04 18:34:45 +00:00
parent 4b71555ce8
commit 6bdda947ef
2 changed files with 11 additions and 5 deletions

View File

@ -16,7 +16,7 @@
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "pip3 install --user -r requirements.txt",
"postCreateCommand": "sudo apt-get update; sudo apt-get -y install python3-tk; pip3 install --user -r requirements.txt",
// Configure tool-specific properties.
// "customizations": {},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.