This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |