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 |
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
| " Use spaces instead of tabs | |
| set expandtab | |
| " Be smart when using tabkey | |
| set smarttab | |
| " 1 tab == 4 spaces | |
| set shiftwidth=4 | |
| set tabstop=4 |