Skills for (academic) Life: Setup

Software required:

Conda environment

If you are using Conda to manage your python modules we have set up a Conda python environment that will install all dependencies for you. After installing Conda, run the following commands:

Download:

wget https://raw.githubusercontent.com/ADACS-Australia/HWSA-2022/gh-pages/files/environment.yaml
# or
curl -O https://raw.githubusercontent.com/ADACS-Australia/HWSA-2022/gh-pages/files/environment.yaml

Then install and activate

conda env create --name hwsa2022 --file environment.yaml
conda activate hwsa2022

Pip environment

If you are using pip to manage your python modules we have an environment set up for you. Create an activate a new python environment (optional, but recommended)

python3 -m venv hwsa2022
source hwsa2022/bin/activate

Download:

wget https://raw.githubusercontent.com/ADACS-Australia/HWSA-2022/gh-pages/files/requirements.txt
# or
curl -O https://raw.githubusercontent.com/ADACS-Australia/HWSA-2022/gh-pages/files/requirements.txt

Install required libraries

pip install -r requirements.txt

Help

Please ensure that you have access to the above tools prior to starting this workshop. If you need help to install or access any of these tools, please email one of the facilitators, or chat to us on the Thursday before the workshop and we can sit down with you to get your system setup.