Download & Install Offline

This page walks you through the specific case of downloading the packages to a local folder, and installing from it offline at a later time/on a separate device

👉 For general instructions (combined download & install), follow the main Installation Instructions instead.

Get the SDV Installer

[New!] Use the SDV Installer: Starting from August 2025, we recommend using the SDV Installer to verify technical requirements, check your credentials, and easily download all the packages you have access to.

Start by installing the SDV Installer:

pip install sdv-installer --upgrade

If you have previously installed the SDV Installer, this same command will also update it.

Step 1: Download packages to a local destination

The installer is able to look up all the packages that you have access to, and download each one. Run the command below in your terminal console to download the packages and save them to a local folder:

sdv-installer download --folder sdv-enterprise

(You can replace the name sdv-enterprise with the name of a local folder. All packages will be downloaded inside the folder.)

You will be prompted for some input.

  • When prompted for a username, enter your email

  • When prompted for a license key, enter your license key. Please be sure you copy-paste exactly as provided by DataCebo.

If this authenticates successfully, the installer will automatically download all the packages you have access to — SDV Enterprise, as well as any additional bundles you have purchased.

Username: <email>
License Key: ********************************

Downloading alling SDV Enterprise:
sdv-enterprise (version 0.30.0) - Downloaded!

Downloading Bundles:
bundle-cag - Downloaded!
bundle-xsynthesizers - Downloaded!

Success! All packages have been downloaded. Please install the packages to use SDV Enterp
Download for a different environment

By default the command will download SDV Enterprise for the machine you're currently using. If you'd like to download SDV Enterprise for use on a different machine, add the flags below that correspond to the desired destination.

  • Python version: Use the --python-version flag to provide your Python version: 39, 310, 311, etc.

  • OS Platform: Use the --platform <platform_name> to provide your OS platform. Supported platform names include:

    • musllinux_1_1_x86_64 (Linux)

    • win_amd64 (Windows)

    • macosx_14_0_arm64 (Macs with M1/M2 chips)

    • macosx_10_9_x86_64 (older Macs with the Intel chips). To get the platform string of a machine, log into it and run the following commands in Python:

      import sysconfig
      
      platform = sysconfig.get_platform()
      platform = platform.replace('-', '_').replace('.', '_')
      print(platform)

For example, the following command will download packages for use on Python 3.10 with Windows — regardless of the machine you are currently using:

sdv-installer install --folder sdv-enterprise --python-version 310 --platform win_amd64

Are you trying to download the AI Connectors bundle? This bundle will not be fully downloaded by default, because it requires you to input the names of your databases. To use this bundle, please re-run the download command for this particular package with the database names.

sdv-installer download --folder sdv-enterprise --package bundle-ai-connectors --options db-bigquery db-mssql

For more information about the available database, see the AI Connectors docs page.

Step 2: Install offline from your local folder

Now, you can complete the installation offline from the local folder that you created in step 2. This step can be done on a different machine, and it will not require any internet connection. If needed, please transfer the folder to the final destination before completing the installation.

sdv-installer install --folder sdv-enterprise

(Replace the name sdv-enterprise with the name of the local folder you created in step 2.)

Installing SDV Enterprise:
sdv-enterprise (version 0.30.0) - Installed!

Installing Bundles:
bundle-cag - Installed!
bundle-xsynthesizers - Installed!

Success! All packages have been installed. You are ready to use SDV Enterprise.

Are you trying to install the AI Connectors bundle? This bundle will not be fully installed by default, because it requires you to input the names of your databases. To use this bundle, please re-run the installation command for this particular package with the database names.

sdv-installer install --folder sdv-enterprise --package bundle-ai-connectors --options db-bigquery db-mssql

For more information about the available database, see the AI Connectors docs page.

Step 3: Verify the installation

To verify that your installation worked, open Python and run the following commands:

# run these commands in Python
import sdv
print(sdv.version.enterprise)

If you've successfully installed SDV Enterprise, this should print a version of SDV Enterprise from this page.

Last updated