(package: str)
| 62 | |
| 63 | # Depth Anything |
| 64 | def get_installed_version(package: str): |
| 65 | try: |
| 66 | return importlib.metadata.version(package) |
| 67 | except Exception: |
| 68 | return None |
| 69 | def try_install_from_wheel(pkg_name: str, wheel_url: str): |
| 70 | if get_installed_version(pkg_name) is not None: |
| 71 | return |
no outgoing calls
no test coverage detected