arrow_back

Create a Python Artifact Registry and Upload Code

로그인 가입
700개 이상의 실습 및 과정 이용하기

Create a Python Artifact Registry and Upload Code

실습 30분 universal_currency_alt 크레딧 1개 show_chart 입문
info 이 실습에는 학습을 지원하는 AI 도구가 통합되어 있을 수 있습니다.
700개 이상의 실습 및 과정 이용하기

gem-artifact-registry-python

Google Cloud self-paced labs logo

Activate Cloud Shell

Cloud Shell is a virtual machine that is loaded with development tools. It offers a persistent 5GB home directory and runs on the Google Cloud. Cloud Shell provides command-line access to your Google Cloud resources.

  1. Click Activate Cloud Shell Activate Cloud Shell icon at the top of the Google Cloud console.

When you are connected, you are already authenticated, and the project is set to your PROJECT_ID. The output contains a line that declares the PROJECT_ID for this session:

Your Cloud Platform project in this session is set to YOUR_PROJECT_ID

gcloud is the command-line tool for Google Cloud. It comes pre-installed on Cloud Shell and supports tab-completion.

  1. (Optional) You can list the active account name with this command:
gcloud auth list
  1. Click Authorize.

  2. Your output should now look like this:

Output:

ACTIVE: * ACCOUNT: student-01-xxxxxxxxxxxx@qwiklabs.net To set the active account, run: $ gcloud config set account `ACCOUNT`
  1. (Optional) You can list the project ID with this command:
gcloud config list project

Output:

[core] project = <project_ID>

Example output:

[core] project = qwiklabs-gcp-44776a13dea667a6 Note: For full documentation of gcloud, in Google Cloud, refer to the gcloud CLI overview guide.

Overview

In this lab, you will learn how to create a Python package repository in Artifact Registry and upload a sample Python package. Artifact Registry allows you to manage your private packages and container images in a single location. This lab uses container images for Python packages.

Task 1. Enable the Artifact Registry API

Before you can use Artifact Registry, you need to enable the Artifact Registry API. This task will guide you through the process.

  1. Enable the Artifact Registry API.
gcloud services enable artifactregistry.googleapis.com Note:
This command enables the Artifact Registry API for your project.
  1. Set your Project ID is:
gcloud config set project {{{ project_0.project_id | "PROJECT_ID" }}} Note:
This command sets your active project identity.
  1. Set your default region to
gcloud config set compute/region {{{ project_0.default_region | "REGION" }}} Note:
This command sets your active compute region.

Task 2. Create a Python Package Repository

Now that the API is enabled, you can create a repository to store your Python packages. You will create a repository with the Python package format.

  1. Create a new Python repository in Artifact Registry. Replace and my-python-repo with your desired region and repository name.
gcloud artifacts repositories create my-python-repo \ --repository-format=python \ --location={{{ project_0.default_region | "REGION" }}} \ --description="Python package repository" Note:
This command creates a Python package repository in Artifact Registry.

Task 3. Configure pip to Use Artifact Registry

To upload and install packages from Artifact Registry, you need to configure pip to authenticate with Artifact Registry.

  1. Install the keyrings.google-artifactregistry-auth package.
pip install keyrings.google-artifactregistry-auth Note:
This package provides authentication for pip to access Artifact Registry.
  1. Configure pip to use Artifact Registry. Replace , PROJECT_ID, and my-python-repo with your region, project ID, and repository name.
pip config set global.extra-index-url https://{{{ project_0.default_region | "REGION" }}}-python.pkg.dev/{{{ project_0.project_id | "PROJECT_ID" }}}/my-python-repo/simple Note:
This command configures pip to use your Artifact Registry repository.

Task 4. Create a Sample Python Package

To upload a package, you first need to create one. This task will guide you through creating a simple Python package.

  1. Create a directory for your package.
mkdir my-package cd my-package Note:
This creates a new directory and navigates into it.
  1. Create a setup.py file with the following content.
from setuptools import setup, find_packages setup( name='my_package', version='0.1.0', author='cls', author_email='{{{ user_0.username | "EMAIL" }}}', packages=find_packages(exclude=['tests']), install_requires=[ # List your dependencies here ], description='A sample Python package', ) Note:
This creates a setup file for your Python package.
  1. Create a my_package/__init__.py file (can be empty).
# my_package/__init__.py Note:
This creates an empty initialization file for the package.
  1. Create a my_package/my_module.py file with some sample code.
def hello_world(): return 'Hello, world!' Note:
This creates a sample module within the package.

Task 5. Upload the Package to Artifact Registry

Now that you have a package, you can upload it to Artifact Registry. You will use the twine tool to upload the package.

  1. Install twine.
pip install twine Note:
This installs the Twine package. In CloudShell installations are typically user installations meaning python -m will need to prefix the package module.
  1. Build the package.
python setup.py sdist bdist_wheel Note:
This builds the source distribution and wheel package.
  1. Upload the package to Artifact Registry.
python3 -m twine upload --repository-url https://{{{ project_0.default_region | "REGION" }}}-python.pkg.dev/{{{ project_0.project_id | "PROJECT_ID" }}}/my-python-repo/ dist/* Note:
This command uploads the package to Artifact Registry. You might need to authenticate.

Task 6. Validate Artifact Registry

Confirm the package has been successfully uploaded to artifact registry

  1. Verify the artifact was deployed successfully by navigating to your Artifact Registry repository in the Google Cloud Console or by listing the artifacts using the gcloud CLI.
gcloud artifacts packages list --repository=my-python-repo --location={{{ project_0.default_region | "REGION" }}} Note:
This command lists NPM packages in the Artifact Registry.
  1. Verify that your package is listed in the Artifact Registry repository.
PACKAGE: my-package CREATE_TIME: 2025-06-25T06:06:10 UPDATE_TIME: 2025-06-25T06:06:11 ANNOTATIONS:

Congratulations!

You have successfully created a Python package repository in Artifact Registry, uploaded a sample package, and installed it using pip. Artifact Registry provides a secure and reliable way to manage your Python packages.

Additional Resources

Manual Last Updated Jun 25, 2025

Lab Last Tested Jun 25, 2025

시작하기 전에

  1. 실습에서는 정해진 기간 동안 Google Cloud 프로젝트와 리소스를 만듭니다.
  2. 실습에는 시간 제한이 있으며 일시중지 기능이 없습니다. 실습을 종료하면 처음부터 다시 시작해야 합니다.
  3. 화면 왼쪽 상단에서 실습 시작을 클릭하여 시작합니다.

시크릿 브라우징 사용

  1. 실습에 입력한 사용자 이름비밀번호를 복사합니다.
  2. 비공개 모드에서 콘솔 열기를 클릭합니다.

콘솔에 로그인

    실습 사용자 인증 정보를 사용하여
  1. 로그인합니다. 다른 사용자 인증 정보를 사용하면 오류가 발생하거나 요금이 부과될 수 있습니다.
  2. 약관에 동의하고 리소스 복구 페이지를 건너뜁니다.
  3. 실습을 완료했거나 다시 시작하려고 하는 경우가 아니면 실습 종료를 클릭하지 마세요. 이 버튼을 클릭하면 작업 내용이 지워지고 프로젝트가 삭제됩니다.

현재 이 콘텐츠를 이용할 수 없습니다

이용할 수 있게 되면 이메일로 알려드리겠습니다.

감사합니다

이용할 수 있게 되면 이메일로 알려드리겠습니다.

한 번에 실습 1개만 가능

모든 기존 실습을 종료하고 이 실습을 시작할지 확인하세요.

시크릿 브라우징을 사용하여 실습 실행하기

이 실습을 실행하려면 시크릿 모드 또는 시크릿 브라우저 창을 사용하세요. 개인 계정과 학생 계정 간의 충돌로 개인 계정에 추가 요금이 발생하는 일을 방지해 줍니다.