docker-compose run trgit submodule update --init --recursivehttps://stackoverflow.com/questions/1030169/pull-latest-changes-for-all-git-submodules
git submodule update --remote --mergels **/*py | entr -r ./run.shTested on Amazon Linux 2.
Install pyenv:
curl https://pyenv.run | bashThen, modify your ~/.bashrc as per ^'s output.
Install python and dependencies
pyenv install 3.10
pyenv virtualenv 3.10 gga
pyenv activate gga
pip install --upgrade pip
pip install torch --extra-index-url https://download.pytorch.org/whl/cpu
pip install pyg_lib torch_scatter torch_sparse torch_cluster torch_spline_conv torch_geometric -f https://data.pyg.org/whl/torch-1.13.0+cpu.html
pip install -e ./gg-envpython -c 'import torch; print(torch.__version__)'https://pytorch-geometric.readthedocs.io/en/latest/notes/installation.html