I'm using Python 3.6, and trying to use Pytorch. I've uninstalled it using pip3, and re-installed it
Hugos-MacBook-Pro-2:project hugokitano$ pip3 install torch
Requirement already satisfied: torch in /usr/local/lib/python3.7/site-packages (1.3.1)
Requirement already satisfied: numpy in /Users/hugokitano/Library/Python/3.7/lib/python/site-packages (from torch) (1.17.2)
However, when I try to import torch, the module is not found. I've also tried to install via conda, running
conda install pytorch torchvision -c pytorch
and it was successful, installing to
environment location: /Users/hugokitano/anaconda
However, "import torch" still doesn't work. Any thoughts? Thanks!