Setup arcade for game development

Create a virtual environment called arcade using python3.8.2
% pyenv virtualenv 3.8.2 arcade

Create a project directory for arcade development
% mkdir -p ~/Projects/arcade

Download the arcade template zip file from GitHub
https://github.com/pythonarcade/template

Unzip the template and move the contents to the newly created arcade project folder

Set the virtual environment for the project
% cd ~/Projects/arcade
% pyenv local arcade

Update pip
(arcade) % pip install --upgrade pip

Install arcade
(arcade) % pip install arcade

Comments