This walkthrough guides you thru installing the EdgePi SDK and creating a simple project environment to run any project
First go through the VS Code setup page as we will be using this IDE in the walkthrough. However, you can use any other method you want.
Open the explorer
Click on Open Folder
and open the default folder.
pi
again.Create a new folder for your project
Install the virtual environment package
$ sudo apt-get install python3-venv
to install the venv package.Create a virtual environment
$ python -m venv venv
and you should see the folder appear in the side bar. Your new virtual environment has been created.$ source venv/bin/activate
Any new project you start should initialize a new venv within your main project folder.
$ python3 -m pip install edgepi-python-sdk
to install the SDK