mirror of
https://github.com/muerrilla/sd-webui-detail-daemon.git
synced 2026-01-26 19:29:47 +00:00
9 lines
242 B
Python
9 lines
242 B
Python
import launch
|
|
|
|
if not launch.is_installed("numpy"):
|
|
launch.run_pip("install numpy")
|
|
print("Installing numpy...")
|
|
|
|
if not launch.is_installed("matplotlib"):
|
|
launch.run_pip("install matplotlib")
|
|
print("Installing matplotlib...") |