Recently, I have installed pytorch 1.12.1 in the conda environment. After installation, I checked the version of pytorch using print(torch.__version__)
, it returns 1.10.0+cpu
. I also checked the available packages in the environment. It shows pytorch version 1.12.1
as shown in figure below.
I am unable to understand why it is detecting version 1.10.0+cpu
. I even reinstalled Anaconda python in Windows, still it shows same version 1.10.0+cpu
even in the base
environment.
Can someone please figure it out.
Advertisement
Answer
I tried uninstalling the existing pytorch version 1.10.0+cpu
using pip/conda but nothing was working. I was finally able to get rid of it by deleting the old Python folder at ‘C:UsersVikrantAppDataRoamingPython’. I created a new environment and installed Pytorch 1.12.1. Now, everything is working fine. Thanks!