I am new to Bazel and I followed the documentation to install requirements using requirements.txt and Workspace file.
This is my workspace file
...
pip_parse(
name = "pip_dependency_1",
requirements_lock = "//server-part/:requirements_lock.txt",
)
load("@pip_dependency_1//:requirements.bzl", "install_deps")
install_deps()
But could not understand how to make a connection with my Build files. Where I run py_binary()
Thank you for your help!
New contributor
CS Diary is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.