Install Anaconda:
Windows:
macOS:
Linux:
bash Anaconda3-<version>-Linux-x86_64.sh
Install Visual Studio Code (VS Code) [Optional]:
Install Git (Windows Users Only):
Configure Git and Authenticate:
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
git clone
or git push
.Setup Conda Environment and Jupyter Kernel: [Optional]
mma867
with the following command:
conda create --name mma867 python=3.11
conda activate mma867
conda install jupyter
python -m ipykernel install --user --name mma867 --display-name "mma867"
Last 2 steps are not needed if you are using VS Code.
Clone the Repository:
git clone https://github.com/moezali1/mma867.git
mma867
in the current directory.Navigate to the Repository Folder:
cd mma867
Install Required Libraries:
requirements.txt
file using pip. Make sure you have Python and pip installed on your system. Run the following command:
pip install -r requirements.txt
requirements.txt
file in the current directory and installs all the libraries listed there.For labs where data file is needed, the data is stored as a csv file and is stored in the respective folder. For example data needed for Session 1 is in Session 1 folder.