illtellyoulater 639ccf254b
Update launch_utils.py to fix wrong dep. checks and reinstalls
Fixes failing dependency checks for extensions having a different package name and import name (for example ffmpeg-python / ffmpeg), which currently is causing the unneeded reinstall of packages at runtime.

In fact with current code, the same string is used when installing a package and when checking for its presence, as you can see in the following example:

> launch_utils.run_pip("install ffmpeg-python", "required package")
[ Installing required package: "ffmpeg-python" ... ]
[ Installed ]

> launch_utils.is_installed("ffmpeg-python")
False

... which would actually return true with:

> launch_utils.is_installed("ffmpeg")
True
2023-12-04 02:35:35 +00:00
..
2023-08-20 18:48:23 +09:00
2023-05-10 11:05:02 +03:00
2023-08-27 08:45:16 +03:00
2023-08-01 08:27:54 +03:00
2023-07-15 09:20:43 +03:00
2023-08-19 16:50:43 +09:00
2023-08-22 18:49:08 +03:00
2023-08-22 18:49:08 +03:00
2023-05-18 10:12:17 +03:00
2023-08-15 13:38:37 -04:00
2023-05-10 11:05:02 +03:00
2023-08-19 08:04:48 +03:00
2023-08-03 18:46:49 +09:00
2023-05-10 08:43:42 +03:00
2023-05-10 08:43:42 +03:00
2023-08-19 10:16:27 +03:00
2023-08-22 18:49:08 +03:00
2023-08-04 13:38:52 +08:00
2023-08-04 13:38:52 +08:00
2023-08-03 23:31:13 +03:00
2023-08-04 08:04:23 +03:00
2023-08-04 08:04:23 +03:00
2023-08-03 23:31:13 +03:00
2023-06-03 22:28:00 +07:00