We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
poetry add spleeter
tensorflow-io-gcs-filesystem
If I run poetry add spleeter I get the following error
Unable to find installation candidates for tensorflow-io-gcs-filesystem (0.34.0) • Installing opt-einsum (3.3.0) • Installing rfc3986 (1.5.0) • Installing tensorboard (2.9.1) • Installing tensorflow-estimator (2.9.0) • Installing tensorflow-io-gcs-filesystem (0.34.0): Failed RuntimeError Unable to find installation candidates for tensorflow-io-gcs-filesystem (0.34.0) • Installing libclang (16.0.6): Downloading... 100% • Installing opt-einsum (3.3.0) • Installing rfc3986 (1.5.0) • Installing tensorboard (2.9.1) • Installing tensorflow-estimator (2.9.0) • Installing tensorflow-io-gcs-filesystem (0.34.0): Failed RuntimeError
I think this is due to you defining tensorflow = "^2.5.0, <2.10.0" in pyproject.toml but not tensorflow-io-gcs-filesystem.
tensorflow = "^2.5.0, <2.10.0"
pyproject.toml
From here we see the correct version is tensorflow-io-gcs-filesystem = "0.27.0".
tensorflow-io-gcs-filesystem = "0.27.0"
Please add that line to pyproject.toml. I added the following to my own pyproject.toml and it fixed the problem
tensorflow = "^2.5.0, <2.10.0" tensorflow-io-gcs-filesystem = "0.27.0" spleeter = "^2.4.0"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
If I run
poetry add spleeter
I get the following errorI think this is due to you defining
tensorflow = "^2.5.0, <2.10.0"
inpyproject.toml
but nottensorflow-io-gcs-filesystem
.From here we see the correct version is
tensorflow-io-gcs-filesystem = "0.27.0"
.Please add that line to
pyproject.toml
. I added the following to my ownpyproject.toml
and it fixed the problemEnvironment
The text was updated successfully, but these errors were encountered: