Add check that pip is available on startup of OctoPrint
This commit is contained in:
parent
b3bdcee50c
commit
3bf6f39ef1
@ -1,5 +1,5 @@
|
|||||||
name: "3DPrinter-OctoPrint"
|
name: "3DPrinter-OctoPrint"
|
||||||
version: "2024.01.0"
|
version: "2024.01.1"
|
||||||
slug: "3dprinter-octoprint"
|
slug: "3dprinter-octoprint"
|
||||||
description: "OctoPrint as an addon, no additional bells and whistles."
|
description: "OctoPrint as an addon, no additional bells and whistles."
|
||||||
arch:
|
arch:
|
||||||
|
|||||||
@ -10,6 +10,7 @@ export BASEDIR="--basedir /data/config/octoprint"
|
|||||||
} || { # Otherwise install it.
|
} || { # Otherwise install it.
|
||||||
{ # Check if Python is available (at `/data/python/octoprint`, set by PATH in Dockerfile)
|
{ # Check if Python is available (at `/data/python/octoprint`, set by PATH in Dockerfile)
|
||||||
python --version
|
python --version
|
||||||
|
python -m ensurepip
|
||||||
} || { # Otherwise create Python virtual environment.
|
} || { # Otherwise create Python virtual environment.
|
||||||
python3 -m venv /data/python/octoprint
|
python3 -m venv /data/python/octoprint
|
||||||
# Install wheel to speed up future installs.
|
# Install wheel to speed up future installs.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user