You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered an error while attempting to install the project dependencies from requirements.txt. The installation fails due to an unresolved requirement for torch==2.0.1+cu117.
Steps to Reproduce:
Run pip install -r requirements.txt.
Error occurs during the installation of torch==2.0.1+cu117.
Error Log:
ERROR: Could not find a version that satisfies the requirement torch==2.0.1+cu117 (from -r requirements.txt (line 2)) (from versions: 2.2.0, 2.2.1, 2.2.2, 2.3.0, 2.3.1, 2.4.0, 2.4.1, 2.5.0, 2.5.1)
ERROR: No matching distribution found for torch==2.0.1+cu117 (from -r requirements.txt (line 2))
Expected Behavior:
Successful installation of the specified torch version.
Observed Behavior:
The version torch==2.0.1+cu117 is no longer available on PyPI. The earliest available version appears to be 2.2.0.
Possible Causes:
The specified version (2.0.1+cu117) might have been deprecated or removed.
Compatibility issues with newer systems or dependencies.
Suggested Fixes:
Update the requirements.txt to use a newer, compatible version of torch (e.g., 2.5.1 or another supported version).
Consider using a different PyTorch distribution index if the version is critical
The text was updated successfully, but these errors were encountered:
Hi team,
I encountered an error while attempting to install the project dependencies from requirements.txt. The installation fails due to an unresolved requirement for torch==2.0.1+cu117.
Steps to Reproduce:
Error Log:
Expected Behavior:
Successful installation of the specified torch version.
Observed Behavior:
The version torch==2.0.1+cu117 is no longer available on PyPI. The earliest available version appears to be 2.2.0.
Possible Causes:
The specified version (2.0.1+cu117) might have been deprecated or removed.
Compatibility issues with newer systems or dependencies.
Suggested Fixes:
Update the requirements.txt to use a newer, compatible version of torch (e.g., 2.5.1 or another supported version).
Consider using a different PyTorch distribution index if the version is critical
The text was updated successfully, but these errors were encountered: