Skip to content
Permalink
219a69a663
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
@tmanik
Latest commit 219a69a Sep 10, 2024 History
1 contributor

Users who have contributed to this file

Workshop Prerequisites

To successfully complete this workshop, you'll need the following tools and accounts:

  1. Cloning the repository
  2. Docker and Docker Compose
  3. Python 3.9+
  4. A text editor or IDE

Installation Instructions

0. Clone this GitHub repository

You can clone the repository to your local machine by running:

git clone https://github.internet2.edu/CLASS/class-container-curriculum-dev

1. Docker and Docker Compose

Docker is essential for containerizing our applications, while Docker Compose helps us define and run multi-container Docker applications.

  • For Windows and Mac: Download and install Docker Desktop from the official Docker website. This includes both Docker and Docker Compose.
  • For Linux: Follow the installation instructions for your specific distribution on the Docker documentation. Then, install Docker Compose separately following these instructions.

Verify the installation by running:

docker --version
docker-compose --version

2. Python 3.9+

Python is required for running our Flask application and data processing scripts.

Verify the installation by running:

python --version

3. Text Editor or IDE

You'll need a text editor or Integrated Development Environment (IDE) to view and edit code files. Some popular options include:

The instructors will be using Visual Studio Code.

Verifying Your Setup

After installing the prerequisites, open a terminal or command prompt and run the following commands to ensure everything is set up correctly:

docker --version
docker-compose --version
python --version

Each command should return a version number without any errors.

If you encounter any issues during the installation or verification process, please consult the official documentation for the respective tools or seek assistance from the workshop organizers.