Installation
SDV is a public, source-available Python library for generating and evaluating synthetic data. You can download and use it under the Business Source License.
- We recommend using a virtual environment (such as virtualenv) to avoid conflicts with other software on your device
pip
conda
pip install sdv==1.0.0b1
Coming soon to conda!
For now, you can test the Beta version using
pip install
inside of your conda environment.These docs only apply to the Beta version of the SDV. If you're experiencing issues importing and using SDV, check your version using:
import sdv
print(sdv.__version__)
This should print
'1.0.0b1'
For other problems, please visit our GitHub. You can browse existing issues and raise a new one if you cannot find a solution.
Last modified 5d ago