So, I am trying to install PyTorch for an LLM project I plan to make in the near future.
py -3 -m pip install pytorch says the following: Exception: You tried to install "pytorch". The package named for PyTorch is "torch"
py -3 -m pip install torch says: ERROR: Could not find a version that satisfies the requirement torch (from versions: none) ERROR: No matching distribution found for torch
I took a look on their website, and found the latest version is 2.5.1, so tried the following command: py -3 -m pip install torch==2.5.1
Same error as ... install torch
I have no idea what is going on anymore, none at all. Any help would be much appreciated. TIA.