Pipeline examples to learn options for python dependency
- Example #0: A simple pipeline without any dependency option.
- Example #1: Using
--requirement_file
. The job is successful. - Example #2: Using
--extra_packages
. The jb is successful. - Example #3: Using
lxml
in--requirement_file
. The job fails with build error in SDK containers. - Example #4: Using
lxml
binary package in--extra_packages
. The job is successful. - Example #5: Using
lxml
ininstall_requires
of setup.py. The job is successful. - Example #6: Custom container with
lxml
pre-installed. The job is successful.