SDK installation
this guide focuses only on installing the bridge agent sdk package on your local system step 1 install python 3 12 macos use homebrew https //brew\ sh/ brew install python\@3 12 or download the installer from python org/downloads https //www python org/downloads/ verify installation python3 version windows download the python 3 12 installer from python org/downloads https //www python org/downloads/ run the installer important check the box "add python to path" during installation click install now verify installation py version step 2 generate a jfrog access token go to https //kyndryl jfrog io https //kyndryl jfrog io/ and log in with your enterprise credentials click your profile icon (top right) → edit profile navigate to access tokens → generate token copy the generated token and store it securely step 3 configure pip for the private repository macos mkdir p / config/pip cat <\<eof > / config/pip/pip conf \[global] extra index url = https // \<your access token>@kyndryl jfrog io/artifactory/api/pypi/kyn cto kaif pypi local/simple eof replace \<your access token> with the token from step 2 windows open powershell and create the pip config directory mkdir p / config/pip cat <\<eof > / config/pip/pip conf \[global] extra index url = https // \<your access token>@kyndryl jfrog io/artifactory/api/pypi/kyn cto kaif pypi local/simple eof replace \<your access token> with the token from step 2 mkdir "$env\ appdata\pip" force create the config file @" \[global] extra index url = https // \<your access token>@kyndryl jfrog io/artifactory/api/pypi/kyn cto kaif pypi local/simple "@ | out file encoding utf8 "$env\ appdata\pip\pip ini" replace \<your access token> with the token from step 2 step 4 create a virtual environment it is recommended to use a virtual environment to isolate project dependencies macos python3 m venv venv source venv/bin/activate windows py m venv venv venv\scripts\activate ps1 if you get an execution policy error on windows, run set executionpolicy scope currentuser executionpolicy remotesigned then retry the activate command step 5 install the sdk pip install bridge agent sdk to install a specific version pip install bridge agent sdk==1 0 23 optional extras the sdk provides optional feature sets you can install cli tools pip install "bridge agent sdk\[cli]" tenant database support (postgresql) pip install "bridge agent sdk\[tenant db]" everything pip install "bridge agent sdk\[all]" step 6 verify installation "import bridge agent sdk; print('bridge agent sdk installed successfully')" upgrading to upgrade to the latest version pip install upgrade bridge agent sdk