Skip to content

Clement-Jean/proto-python-course

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

proto-python-course

build main branch Lint protobuf

COUPON: START_AUG

Notes

Windows

  • I recommend you use powershell (try to update: see) for following this course.
  • I recommend you use Chocolatey as package installer (see Install)

Build

Linux/MacOS

python -m venv venv
source ./venv/bin/activate
pip install -r requirements.txt
make generate

Windows - Chocolatey

choco install make
python -m venv venv
source ./venv/bin/activate
pip install -r requirements.txt
make generate

Windows - Without Chocolatey

python -m venv venv
source ./venv/bin/activate
pip install -r requirements.txt
protoc -Iproto --python_out=proto proto/*.proto

Run

python main.py