proto-python-course
proto-python-course copied to clipboard
Complete Guide to Protocol Buffers 3 Python
proto-python-course
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