When I finish the installation and ran some codes, I got:
ModuleNotFoundError: No module named 'pytorch3d.visualization'
According to the pycharm, there are some module can not be found:

I am following the install.md https://github.com/facebookresearch/pytorch3d/blob/master/INSTALL.md
There is no error when I made the installation.
System info:
To make it clear, my commends are:
conda create -n Pytorch3D python=3.6
conda activate Pytorch3D
pytorch==1.4.0 torchvision==0.5.0 cudatoolkit=10.0
conda install -c conda-forge -c fvcore fvcore
conda install jupyter
pip3 install scikit-image matplotlib imageio plotly
pip3 install black 'isort<5' flake8 flake8-bugbear flake8-comprehensions
conda install pytorch3d -c pytorch3d
I want pytorch3D to work with CUDA.
Thank you in advance!
What do you mean by "according to the pycharm"? The latest release of pytorch3d, which you appear to have successfully installed, does not contain a module called "pytorch3d.visualization". The bleeding-edge main branch does.
Are you trying to run one of the tutorials? As @bottler mentioned, we have several features in the master branch which are not yet available in the conda packages, visualization is one of these features. If you want to run this notebook please install PyTorch3D from GitHub following the instructions in INSTALL.md.
Most helpful comment
Are you trying to run one of the tutorials? As @bottler mentioned, we have several features in the master branch which are not yet available in the conda packages, visualization is one of these features. If you want to run this notebook please install PyTorch3D from GitHub following the instructions in INSTALL.md.