I tried to run a PPO algorithm from the stable-baselines3 library on a basic gym environment on my local CPU, however I get the following RuntimeError:
RuntimeError: Calling torch.geqrf on a CPU tensor requires compiling PyTorch with LAPACK. Please use PyTorch built with LAPACK support.
I'm using a conda environment on a Windows machine, with following installations:
pytorch 1.12.1 cpu_py39h5e1f01c_0
lapack 3.9.0 netlib conda-forge
Since I'm quite new to Python I have no clue how to resolve this issue and web search didn't give any proper instructions on that specific problem.
I tried uninstalling PyTorch in my anaconda prompt, however this would remove a lot of packages which scared me of breaking something. Hence, I'm lost what else to do in order to build PyTorch with Lapack support...
Any help would be appreciated, Cheers.