Update install.py
Fixes library names so launch.is_installed() properly checks for installed packagespull/38/head
parent
b179be6192
commit
c83dd8c53a
10
install.py
10
install.py
|
|
@ -2,12 +2,12 @@ import launch
|
||||||
|
|
||||||
packages = {
|
packages = {
|
||||||
"onnx": "onnx",
|
"onnx": "onnx",
|
||||||
"onnxruntime-gpu": "onnxruntime-gpu==1.14.0",
|
"onnxruntime": "onnxruntime-gpu==1.14.0",
|
||||||
"opencv-python": "opencv-python",
|
"cv2": "opencv-python",
|
||||||
"numpy": "numpy",
|
"numpy": "numpy",
|
||||||
"Pillow": "Pillow",
|
"PIL": "Pillow",
|
||||||
"segmentation-refinement": "segmentation-refinement",
|
"segmentation_refinement": "segmentation-refinement",
|
||||||
"scikit-learn": "scikit-learn",
|
"sklearn": "scikit-learn",
|
||||||
"clip": "clip",
|
"clip": "clip",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue