Dependencies, please! #201
gustavo1spbr
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Absolutely new to running Python. Much obliged to anyone who can tell me what do I need to have installed in my computer before running this app. I also own a Nvidia GPU which I would like to have enabled for the translations.
I already installed:
I did not manage to install:
1) PyTorch.
The latest version is for CUDA 12..4, not 12.6. I tried to install with the following command:
"pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124"
...but then got stuck in this message:
"Looking in indexes: https://download.pytorch.org/whl/cu124"
...it just stays like that forever.
2) Torch.
Running "pip -install torch" results in this error message:
"ERROR: Could not find a version that satisfies the requirement torch (from versions: none)
ERROR: No matching distribution found for torch"
I then tried downloading the whl file for direct installation. Tried:
torch-2.5.1-cp312-cp312-win_amd64.whl
torch-2.5.1-cp311-cp311-win_amd64.whl
torch-2.5.1-cp310-cp310-win_amd64.whl
torch-2.5.1-cp39-cp39-win_amd64.whl
Trying to install any of them with pip install got the same error:
"ERROR: [file] is not a supported wheel on this platform"
3) The installation requirements.
When I tried to run pip "install -r requirements.txt", I got all these error messages:
"ERROR: Ignored the following versions that require a different python version:
6.3.0 Requires-Python <3.11,>=3.6;
6.3.1 Requires-Python <3.11,>=3.6;
6.3.2 Requires-Python <3.11,>=3.6;
6.4.0.1 Requires-Python <3.12,>=3.7;
6.4.1 Requires-Python <3.12,>=3.7;
6.4.2 Requires-Python <3.12,>=3.7;
6.4.3 Requires-Python <3.12,>=3.7;
6.5.0 Requires-Python <3.12,>=3.7;
6.5.1 Requires-Python <3.12,>=3.7;
6.5.1.1 Requires-Python <3.12,>=3.7;
6.5.2 Requires-Python <3.12,>=3.7;
6.5.3 Requires-Python <3.12,>=3.7;
6.6.0 Requires-Python <3.13,>=3.8;
6.6.1 Requires-Python <3.13,>=3.8;
6.6.2 Requires-Python <3.13,>=3.8;
6.6.3 Requires-Python <3.13,>=3.8;
6.6.3.1 Requires-Python <3.13,>=3.8; 6.7.0
Requires-Python <3.13,>=3.9; 6.7.1
Requires-Python <3.13,>=3.9; 6.7.2
Requires-Python <3.13,>=3.9; 6.7.3
Requires-Python <3.13,>=3.9; 6.8.0
Requires-Python <3.13,>=3.9; 6.8.0.1
Requires-Python <3.13,>=3.9
ERROR: Could not find a version that satisfies the requirement torch>=2.1.0 (from versions: none)
ERROR: No matching distribution found for torch>=2.1.0"
Given all these errors, I created the virtual environment as suggested in the installation page:
"python -m venv comic-translate-venv"
Activated it and ran again: "pip install -r requirements.txt"
But it just got stuck after hitting ENTER with not messages whatsoever.
I'm lost..... Any help???
Platform:
Windows 11 23H2
AMD Ryzen 9 7950X3D
Nvida RTX 4090
64GB
Beta Was this translation helpful? Give feedback.
All reactions