0

I've installed pytorch 0.4.1 with both pip and conda in an effort to get a specific package working. Somehow version 1.5.0 is installed somewhere on my filesystem and despite my best efforts (following all these instructions) I cannot find and uninstall this version. Running python3.6 -c "import torch; print(torch.__version__)" results in 1.5.0 no matter how many uninstalls I attempt. I was using some virtual environments to help in my development, using venv. I am running macOS 10.15.4, Intel Core i9 8-core, 32 GB 2667 DDR4, AMD Radeon Pro 5500M 8 GB.

1 Answers1

1

I was able to locate all installs of torch using sudo find . -name "*torch*".

My version, which I ended up deleting 'by hand', was located at /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/torch.

Hopefully this can help someone else.