Commit cf5292e5 authored by rusty1s's avatar rusty1s
Browse files

installation

parent e56f33d5
......@@ -35,4 +35,27 @@ class GNN(ScalableGNN):
## Installation
* Install [PyTorch >=1.7.0](https://pytorch.org/get-started/locally/)
* Install [PyTorch Geometric]() from master:
```
pip install --no-index torch-scatter -f https://pytorch-geometric.com/whl/torch-1.7.0+${CUDA}.html
pip install --no-index torch-sparse -f https://pytorch-geometric.com/whl/torch-1.7.0+${CUDA}.html
pip install git+https://github.com/rusty1s/pytorch_geometric.git
```
where `${CUDA}` should be replaced by either `cpu`, `cu92`, `cu101`, `cu102`, or `cu110` depending on your PyTorch installation.
Then run:
```
python setup.py install
```
## Project Structure
## Running tests
```
python setup.py test
```
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment