Skip to content

Latest commit

 

History

History
111 lines (109 loc) · 6.6 KB

install.md

File metadata and controls

111 lines (109 loc) · 6.6 KB

Installation steps

The procedure was tested on Ubuntu 18.04 with an installed CUDA driver of version 10.1.

Environmental variables:

  • $PD_MESH_NET_ROOT: Root of this folder.
  • $PYG_ROOT: Root of PyTorch Geometric.

Steps

It will be assumed that virtualenvwrapper is installed. Alternatively, the creation and activation of the virtualenv (mkvirtualenv and workon in the instructions below) can be performed according to the official PyPA instructions.

Create a virtualenv:

mkvirtualenv pd_mesh_net --python=$(which python3)

Install PyTorch Geometric:

export THIRD_PARTY_ROOT=$PD_MESH_NET_ROOT/third_party
export PYG_ROOT=$THIRD_PARTY_ROOT/pytorch_geometric

Install PyMesh

Install other dependencies

pip install pyyaml

As a reference, the above command installed the following package versions:

  • Installed pyyaml-5.3

Install package

cd $PD_MESH_NET_ROOT
workon pd_mesh_net
pip install -e .