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 have searched the issues of this repo and believe that this is not a duplicate.
If an exception occurs when executing a command, I executed it again in debug mode (-vvv option).
OS version and name: Linux 2 5.4.0-71-generic Ubuntu x86_64 GNU/Linux
Poetry version: Poetry version 1.1.12
Link of a Gist with the contents of your pyproject.toml file:
Issue
When installing torch and torchaudio for CUDA-11.3 from URL I got the following dependency issue. I believe this shouldn't break because torch version is 1.10.0 but with a specified build.
Updating dependencies
Resolving dependencies... (103.3s)
SolverProblemError
Because torchaudio (0.10.0+cu113) depends on torch (1.10.0)
and tts-train depends on torch (1.10.0+cu113), torchaudio is forbidden.
So, because tts-train depends on torchaudio (0.10.0+cu113), version solving failed.
at ~/.local/pipx/venvs/poetry/lib/python3.8/site-packages/poetry/puzzle/solver.py:241 in _solve
237│ packages = result.packages
238│ except OverrideNeeded as e:
239│ return self.solve_in_compatibility_mode(e.overrides, use_latest=use_latest)
240│ except SolveFailure as e:
→ 241│ raise SolverProblemError(e)
242│
243│ results = dict(
244│ depth_first_search(
245│ PackageNode(self._package, packages), aggregate_package_nodes
The text was updated successfully, but these errors were encountered:
-vvv
option).Issue
When installing
torch
andtorchaudio
for CUDA-11.3 from URL I got the following dependency issue. I believe this shouldn't break becausetorch
version is 1.10.0 but with a specified build.The text was updated successfully, but these errors were encountered: