I’m trying to install PyTorch on Ubuntu 20.04 with pip under Python 3.8.
According to the official, PyTorch can work under Python 3.8, however, PyTorch requires networkx
package and the latest version of it requires Python 3.9+.
So, before installing PyTorch, I have to install the older version of networkx
manually by pip install networkx==3.1
.
My question here is, is it OK to use this older networkx
package with the latest PyTorch?