IT introduction for BIO325 (fall 2024)
- Open a web browser and visit https://bit.ly/bio325_data.
- Download the whole folder containing the data to your local machine.
- Open a web browser and visit https://git-scm.com/download/.
- Download the correct software version for your operating system.
- Start the installation and follow the instructions
- Open the terminal and type the following:
git --version - If Git is not installed yet, follow the instructions to install Xcode Command Line Tools that contain Git.
- Open a web browser and visit https://docs.conda.io/en/latest/miniconda.html.
- Download the correct software version for your operating system.
- Start the installation and follow the instructions
Windows user should execute conda commands from the anaconda prompt (has been installed together with miniconda). Linux and macOS users may use their default terminals
- Windows: From the start menu, search for "Anaconda Prompt" and open it.
- macOS and Linux: Open a terminal
Execute the following command in your command prompt:
conda create -n bio325_2024 python=3.9
Once the virtual environment has been generated, activate it with this command:
conda activate bio325_2024
Make sure that your virtual environment is activated. Execute the following commands in your command prompt:
git clone https://github.com/sovinn92/bio325_2024
cd bio325_2024
pip install -r requirements.txt
all the required python packages listed in the file "requirements.txt" will be installed.
Start jupyter lab from the console within the bio325_2024 folder:
jupyter-lab