Skip to content
New issue

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

[Bug] Not compatible with Python 3.12.4 #175

Closed
formidabilus opened this issue Aug 12, 2024 · 3 comments
Closed

[Bug] Not compatible with Python 3.12.4 #175

formidabilus opened this issue Aug 12, 2024 · 3 comments
Labels
invalid This doesn't seem right

Comments

@formidabilus
Copy link

What happened?

❯ pip install --upgrade tidal-dl-ng
Defaulting to user installation because normal site-packages is not writeable
ERROR: Ignored the following versions that require a different python version: 0.10.0 Requires-Python <3.12,>=3.10; 0.10.1 Requires-Python <3.12,>=3.10; 0.10.2 Requires-Python <3.12,>=3.10; 0.11.0 Requires-Python <3.12,>=3.10; 0.12.0 Requires-Python <3.12,>=3.10; 0.12.1 Requires-Python <3.12,>=3.10; 0.12.2 Requires-Python <3.12,>=3.10; 0.12.3 Requires-Python <3.12,>=3.10; 0.12.4 Requires-Python <3.12,>=3.10; 0.12.5 Requires-Python <3.12,>=3.10; 0.12.6 Requires-Python <3.12,>=3.10; 0.12.7 Requires-Python <3.12,>=3.10; 0.13.0 Requires-Python <3.12,>=3.10; 0.13.1 Requires-Python <3.12,>=3.10; 0.13.2 Requires-Python <3.12,>=3.10; 0.14.0 Requires-Python <3.12,>=3.10; 0.15.0 Requires-Python <3.12,>=3.10; 0.15.1 Requires-Python <3.12,>=3.10; 0.15.2 Requires-Python <3.12,>=3.10; 0.15.3 Requires-Python <3.12,>=3.10; 0.15.4 Requires-Python <3.12,>=3.10; 0.15.5 Requires-Python <3.12,>=3.10; 0.15.6 Requires-Python <3.12,>=3.10; 0.4.10 Requires-Python >=3.10,<3.12; 0.4.11 Requires-Python >=3.10,<3.12; 0.4.13 Requires-Python >=3.10,<3.12; 0.4.14 Requires-Python >=3.10,<3.12; 0.4.15 Requires-Python >=3.10,<3.12; 0.4.16 Requires-Python >=3.10,<3.12; 0.4.17 Requires-Python >=3.10,<3.12; 0.4.18 Requires-Python >=3.10,<3.12; 0.4.19 Requires-Python >=3.10,<3.12; 0.4.2 Requires-Python >=3.10,<3.12; 0.4.20 Requires-Python >=3.10,<3.12; 0.4.21 Requires-Python >=3.10,<3.12; 0.4.22 Requires-Python >=3.10,<3.12; 0.4.23 Requires-Python >=3.10,<3.12; 0.4.24 Requires-Python >=3.10,<3.12; 0.4.25 Requires-Python >=3.10,<3.12; 0.4.26 Requires-Python >=3.10,<3.12; 0.4.27 Requires-Python >=3.10,<3.12; 0.4.28 Requires-Python >=3.10,<3.12; 0.4.29 Requires-Python >=3.10,<3.12; 0.4.3 Requires-Python >=3.10,<3.12; 0.4.30 Requires-Python >=3.10,<3.12; 0.4.31 Requires-Python >=3.10,<3.12; 0.4.32 Requires-Python >=3.10,<3.12; 0.4.4 Requires-Python >=3.10,<3.12; 0.4.5 Requires-Python >=3.10,<3.12; 0.4.6 Requires-Python >=3.10,<3.12; 0.4.7 Requires-Python >=3.10,<3.12; 0.4.8 Requires-Python >=3.10,<3.12; 0.4.9 Requires-Python >=3.10,<3.12; 0.5.0 Requires-Python >=3.10,<3.12; 0.5.1 Requires-Python >=3.10,<3.12; 0.6.0 Requires-Python >=3.10,<3.12; 0.7.0 Requires-Python >=3.10,<3.12; 0.7.1 Requires-Python >=3.10,<3.12; 0.8.0 Requires-Python >=3.10,<3.12; 0.8.1 Requires-Python >=3.10,<3.12; 0.8.2 Requires-Python >=3.10,<3.12; 0.8.3 Requires-Python >=3.10,<3.12; 0.9.0 Requires-Python <3.12,>=3.10; 0.9.1 Requires-Python <3.12,>=3.10
ERROR: Could not find a version that satisfies the requirement tidal-dl-ng (from versions: none)
ERROR: No matching distribution found for tidal-dl-ng

Version App

v0.15.6

What operating system are you seeing the problem on?

Linux

Relevant log output

No response

Your settings

no settings because there was no install.
@formidabilus formidabilus added the bug Something isn't working label Aug 12, 2024
@unimetal
Copy link

unimetal commented Aug 20, 2024

Sounds like you are using Ubuntu?
Just try using a venv with the dedicated python3.11 version. Just type the following commands step by step in a Terminal and it works.

Install python3.11-venv
sudo apt install python3.11-venv

Create venv called venv311 in home folder:
python3.11 -m venv ~/venv311

Activate venv for the current bash session:
source ~/venv311/bin/activate

You can see the (venv311) at the beginning of the line -> venv311 is activated
Now you can use pip3.11 in your created venv to install and use the plugin in the venv.

(venv311) user@ubuntu$ pip3.11 install --upgrade tidal-dl-ng
(venv311) user@ubuntu$ pip3.11 install --upgrade tidal-dl-ng[gui]

as long as the venv311 is activated, you can use the tidal-dl-ng package:
(venv311) user@ubuntu$ tdng

@ChilliGeologist
Copy link

There's some more activity talking about the reason for this here: #135

@exislow exislow added invalid This doesn't seem right and removed bug Something isn't working labels Nov 8, 2024
@exislow exislow removed their assignment Nov 8, 2024
@exislow
Copy link
Owner

exislow commented Nov 8, 2024

Not a bug. Read the requirements of the README. Duplicate #135

@exislow exislow closed this as completed Nov 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
invalid This doesn't seem right
Projects
None yet
Development

No branches or pull requests

4 participants