SDK installation
this guide focuses only on installing the bridge agent sdk package on your local system to understand how set up the local environment, see local set up docid\ y94je3xbnoz1pdtynhuoa 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 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 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 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 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]" 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