I am trying to install deepmatcher package in python 3.6. To let this package to run in python you need have a torch==0.3.1
version. So I am trying to install torch==0.3.1
by running :
pip install torch==0.3.1
Error during installation:
Collecting torch==0.3.1
ERROR: Could not find a version that satisfies the requirement torch==0.3.1 (from versions: 0.1.2, 0.1.2.post1)
ERROR: No matching distribution found for torch==0.3.1
I even tried installing it using "peterjc123" package but still unable to uninstall it.
We've just released a new version of fastai, which adds support for pytorch 1.11 (which means fastai now supports python 3.10).
Package ManagerTo install the PyTorch binaries, you will need to use one of two supported package managers: Anaconda or pip.
torch 0.3.1
is not listed official anymore. To install torch 0.3.1
one can either build it by source or using a whl
file for the specific version.
whl
files can be found here provided by pytorch
The downloaded file can then be installed with pip install [path to downloaded file]
To build torch by source one can checkout the desired version via git
git checkout v[version number]
For torch==0.3.1 this would be git checkout v0.3.1
After this follow the install instructions provided by README.md
More information can be found at: https://pytorch.org/get-started/previous-versions/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With