Skip to content

Commit

Permalink
#112 Add python virtual environment
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Feb 7, 2025
1 parent 69a540d commit f4f737f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,12 @@ generate-python:
for SENZING_COMPONENT in $(SENZING_COMPONENTS); do \
OUTPUT_DIR=example_generated_source_code/python/$${SENZING_COMPONENT}; \
mkdir -p $${OUTPUT_DIR}; \
protoc --proto_path=. --python_out=$${OUTPUT_DIR} $${SENZING_COMPONENT}.proto; \
python -m grpc_tools.protoc ---proto_path=. --python_out=$${OUTPUT_DIR} --pyi_out=$${OUTPUT_DIR} --grpc_python_out=$${OUTPUT_DIR} $${SENZING_COMPONENT}.proto; \
done

# Replaced with "protoc"
# python3 -m grpc_tools.protoc --proto_path=. --python_out=$${OUTPUT_DIR} --grpc_python_out=$${OUTPUT_DIR} $${SENZING_COMPONENT}.proto; \
# protoc --proto_path=. --python_out=$${OUTPUT_DIR} $${SENZING_COMPONENT}.proto; \

.PHONY: generate-ruby
Expand Down

0 comments on commit f4f737f

Please sign in to comment.