pipelines/components/google-cloud
sina chavoshi 7155dc1931
fix error in dependency file.
2021-09-20 13:20:04 -07:00
..
docs Update requirements.txt 2021-09-20 13:02:40 -07:00
examples chore(components/google-cloud): update readme with link to samples & api docs (#5734) 2021-05-26 10:42:16 -07:00
google_cloud_pipeline_components chore(components/google-cloud): Create Release Branch for Google cloud pipeline components 0.1.7 (#6583) 2021-09-20 12:45:00 -07:00
tests feat(components/google-cloud): Add support for labels in custom_job wrapper (#6579) 2021-09-17 17:18:23 -07:00
LICENSE components: flattening the components/google-cloud/ sdk structure (#5428) 2021-04-05 11:45:00 -07:00
OWNERS chore(components/GCP): update owners (#6542) 2021-09-10 06:49:52 -07:00
README.md feat(components/google-cloud): Include release notes in pypi (#6368) 2021-08-18 17:56:53 -07:00
RELEASE.md chore(components/google-cloud): Create Release Branch for Google cloud pipeline components 0.1.7 (#6583) 2021-09-20 12:45:00 -07:00
dependencies.py fix error in dependency file. 2021-09-20 13:20:04 -07:00
setup.cfg components: flattening the components/google-cloud/ sdk structure (#5428) 2021-04-05 11:45:00 -07:00
setup.py chore(components/google-cloud): Post release 0.1.6 (#6498) 2021-09-02 13:27:18 -07:00
tox.ini chore(components/google-cloud): Update tox test env to Python 3.9 (#6491) 2021-09-01 15:44:30 -07:00

README.md

Google Cloud Pipeline Components

Python PyPI

Google Cloud Pipeline Components provides an SDK and a set of components that lets you interact with Google Cloud services such as Vertex AI. You can use the predefined components in this repository to build your pipeline using the Kubeflow Pipelines SDK.

Documentation

User Documentation

Please see the Google_cloud_pipeline_components User Guide.

API documentation

Please see the Google_cloud_pipeline_components ReadTheDocs page.

Release Details

For detailed previous and upcoming changes, please check here

Examples

Installation

Requirements

Install latest release

Use the following command to install Google Cloud Pipeline Components from PyPI.

pip install -U google-cloud-pipeline-components

Install from source

Use the following commands to install Google Cloud Pipeline Components from GitHub.

git clone https://github.com/kubeflow/pipelines.git
pip install pipelines/components/google-cloud/.

Build the package from source and install

Use the following commands build Google Cloud Pipeline Components from the source code and install the package.

source_root=$(pwd)

git clone https://github.com/kubeflow/pipelines.git
cd pipelines/components/google-cloud
python setup.py bdist_wheel clean

WHEEL_FILE=$(find "$source_root/pipelines/components/google-cloud/dist/" -name "google_cloud_pipeline_components*.whl")
pip3 install --upgrade $WHEEL_FILE