Installation Instructions
These steps walk you through downloading the SDV Enterprise package and installing the software on your machine.
What will you need to get started? Please make sure you have your email and license key on-hand. If you do not know what your email and license key, please contact DataCebo.
Please also double check that your machine meets the Technical Requirements for SDV Enterprise.
Basic Instructions
Ensure your machine meets the Technical Requirements. Then use the command below to download the latest version of SDV Enterprise from our servers and install it. The same command will also upgrade any existing versions of SDV Enterprise.
pip install -U sdv-enterprise --index-url https://pypi.datacebo.com
You will be prompted for some input.
When prompted for a username, enter your email
When prompted for a password, enter your license key
User for pypi.datacebo.com: <input your email>
Password: <input your license key>
To verify that the 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.
Installing Bundles
If you have purchased an SDV Bundle, follow these instructions to install it on your machine. Replace the command below with the name of each bundle you have purchased, separated by a space:
pip install -U <name of bundles> --index-url https://pypi.datacebo.com
Currently available bundles are: bundle-cag
, bundle-xsynthesizers
, and bundle-ai-connectors
(see all offerings here). Example:
pip install -U bundle-cag bundle-xsynthesizers --index-url https://pypi.datacebo.com
When prompted, use the same email and license key as you do for SDV Enterprise.
Install the full software (SDV Enterprise & all bundles)
Does your pricing plan includes the full software suite — SDV Enterprise, as well as all the possible bundles? If so, you can install all of the functionality at once via the sdv-enterprise-full
package. Use the command below.
pip install -U sdv-enterprise-full --index-url https://pypi.datacebo.com
You will be prompted for some input.
When prompted for a username, enter your email
When prompted for a password, enter your license key
User for pypi.datacebo.com: <input your email>
Password: <input your license key>
Download & Install Separately
Use the commands below to download the latest version of SDV Enterprise from our servers without installing it. This may be useful if you'd like to install it later. The first command creates a folder called sdv_folder/
.
mkdir sdv_folder
This second command downloads the library into that folder. You can replace the name sdv-enterprise
with the name of the software to install (a bundle such as bundle-cag
, or sdv-enterprise-full)
.
pip download sdv-enterprise --index-url https://pypi.datacebo.com --only-binary=:all: --dest sdv_folder
You will be prompted for some input.
When prompted for a username, enter your email
When prompted for a password, enter your license key
User for pypi.datacebo.com: <input your email>
Password: <input your license key>
When you're ready to install the downloaded folder, use the command below. The same command will also upgrade any existing versions of SDV Enterprise.
pip install -U sdv-enterprise --no-index --find-links sdv_folder
Verify your Installation
To verify that the 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.
FAQs
Last updated