Advanced Topics in Artificial Intelligence, NUS CS6208, 2023
-
Follow this Notebook installation :
https://colab.research.google.com/github/xbresson/CS6208_2023/blob/master/codes/installation/installation.ipynb -
Open your Google Drive :
https://www.google.com/drive -
Open in Google Drive Folder 'CS6208_2023' and go to Folder 'CS6208_2023/codes/'
Select the notebook 'file.ipynb' and open it with Google Colab using Control Click + Open With Colaboratory
- Open a Terminal and type
# Conda installation
curl https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -o miniconda.sh -J -L -k # Linux
curl https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -o miniconda.sh -J -L -k # OSX
chmod +x miniconda.sh
./miniconda.sh
source ~/.bashrc
# Clone GitHub repo
git clone https://github.com/xbresson/CS6208_2023.git
cd CS6208_2023
# Install python libraries
conda env create -f environment.yml
source activate gnn_course
# Run the notebooks in Chrome
jupyter notebook
# Install Anaconda
https://repo.anaconda.com/miniconda/Miniconda3-latest-Windows-x86_64.exe
# Open an Anaconda Terminal
Go to Application => Anaconda3 => Anaconda Prompt
# Install git : Type in terminal
conda install git
# Clone GitHub repo
git clone https://github.com/xbresson/CS6208_2023.git
cd CS6208_2023
# Install python libraries
conda env create -f environment.yml
conda activate gnn_course
# Run the notebooks in Chrome
jupyter notebook