Skip to content

Instantly share code, notes, and snippets.

@alanpaivaa
Forked from AnirudhDagar/pyg_setup.sh
Created February 19, 2021 11:52
Show Gist options
  • Save alanpaivaa/cd8e568797c3bd284183496321de565f to your computer and use it in GitHub Desktop.
Save alanpaivaa/cd8e568797c3bd284183496321de565f to your computer and use it in GitHub Desktop.
PyTorch Geometric Setup Script for Mac OS X
# Works on OS X, with conda installed.
# Create conda environment for PyTorch Geometric
echo "Creating pyg environment"
conda create -n pyg python=3.6
echo "Activate pyg Env"
source activate pyg
# PyTorch Conda Installation
echo "Installing PyTorch"
conda install pytorch torchvision -c pytorch
# Change of Compilers
echo "Compiler Changing on OS X"
conda install -y clang_osx-64 clangxx_osx-64 gfortran_osx-64
MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++
# Install dependencies
echo "Installing PyG Dependencies"
pip install torch_scatter
pip install torch_sparse
pip install torch_cluster
pip install torch_geometric
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment