Hello
It sounds like you're encountering an issue with missing DLL files required by the PyTorch library. Unfortunately, “ext-ms-win-oobe-query-l1-1-0.dll” is part of the Windows API set and isn’t typically available for direct download. This DLL is often a dependency for other system files and may not be present on all versions of Windows.But I can offer some steps you might take to resolve the issue:
- Reinstall PyTorch: Sometimes, reinstalling the library can fix missing or corrupted files. Make sure you follow the official installation instructions from the PyTorch website.
- Update Windows: Ensure your operating system is fully updated, as missing DLL files can sometimes be part of system updates.
- Visual C++ Redistributable Packages: PyTorch and other similar libraries often depend on the Visual C++ Redistributable Packages. Download and install the latest versions from the Microsoft website.
- Python Environment: If you're using a virtual environment, try creating a new one and installing PyTorch there to see if the problem persists.
- Dependency Check: Use tools like Dependency Walker to check which dependencies are missing or causing issues. This can give you more insight into the source of the problem.