From 20e36851f38d4b6d0c29397d245cb62ffabeece3 Mon Sep 17 00:00:00 2001 From: janmatzek Date: Fri, 29 May 2026 12:58:36 +0200 Subject: [PATCH] feat: add pypi installation guide to readme --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 4b90d09..6c61158 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,21 @@ The migration can be performed as a complete workspace transfer or selectively f ### Installation +You can install the CLI using a package manager of your choice or clone the repository and install directly from source. + +### Install from PyPI + +Simply install the package using pip or other package manager. It is recommended to install the package into a virtual environment + +```bash +# Create a virtual environment +python -m venv .venv +source .venv/bin/activate + +# Install the package +pip install gooddata-legacy2cloud +``` + #### Install from Source 1. **Clone this repository**