Workshop Prerequisites
To successfully complete this workshop, you'll need the following tools and accounts:
- Cloning the repository
- Docker and Docker Compose
- Python 3.9+
- 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.
- Download and install Python from the official Python website. Make sure to choose version 3.9 or higher.
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:
- Visual Studio Code (recommended): Download here
- PyCharm: Download here
- Sublime Text: Download here
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.