Synthetic Data Vault
GitHubSlackDataCebo
  • Welcome to the SDV!
  • Tutorials
  • Explore SDV
    • SDV Community
    • SDV Enterprise
      • ⭐Compare Features
    • SDV Bundles
      • ❖ AI Connectors
      • ❖ CAG
      • ❖ Differential Privacy
      • ❖ XSynthesizers
  • Single Table Data
    • Data Preparation
      • Loading Data
      • Creating Metadata
    • Modeling
      • Synthesizers
        • GaussianCopulaSynthesizer
        • CTGANSynthesizer
        • TVAESynthesizer
        • ❖ XGCSynthesizer
        • ❖ SegmentSynthesizer
        • * DayZSynthesizer
        • ❖ DPGCSynthesizer
        • ❖ DPGCFlexSynthesizer
        • CopulaGANSynthesizer
      • Customizations
        • Constraints
        • Preprocessing
    • Sampling
      • Sample Realistic Data
      • Conditional Sampling
    • Evaluation
      • Diagnostic
      • Data Quality
      • Visualization
  • Multi Table Data
    • Data Preparation
      • Loading Data
        • Demo Data
        • CSV
        • Excel
        • ❖ AlloyDB
        • ❖ BigQuery
        • ❖ MSSQL
        • ❖ Oracle
        • ❖ Spanner
      • Cleaning Your Data
      • Creating Metadata
    • Modeling
      • Synthesizers
        • * DayZSynthesizer
        • * IndependentSynthesizer
        • HMASynthesizer
        • * HSASynthesizer
      • Customizations
        • Constraints
        • Preprocessing
      • * Performance Estimates
    • Sampling
    • Evaluation
      • Diagnostic
      • Data Quality
      • Visualization
  • Sequential Data
    • Data Preparation
      • Loading Data
      • Cleaning Your Data
      • Creating Metadata
    • Modeling
      • PARSynthesizer
      • Customizations
    • Sampling
      • Sample Realistic Data
      • Conditional Sampling
    • Evaluation
  • Concepts
    • Metadata
      • Sdtypes
      • Metadata API
      • Metadata JSON
    • Constraints
      • Predefined Constraints
        • Positive
        • Negative
        • ScalarInequality
        • ScalarRange
        • FixedIncrements
        • FixedCombinations
        • ❖ FixedNullCombinations
        • ❖ MixedScales
        • OneHotEncoding
        • Inequality
        • Range
        • * ChainedInequality
      • Custom Logic
        • Example: IfTrueThenZero
      • ❖ Constraint Augmented Generation (CAG)
        • ❖ CarryOverColumns
        • ❖ CompositeKey
        • ❖ ForeignToForeignKey
        • ❖ ForeignToPrimaryKeySubset
        • ❖ PrimaryToPrimaryKey
        • ❖ PrimaryToPrimaryKeySubset
        • ❖ SelfReferentialHierarchy
        • ❖ ReferenceTable
        • ❖ UniqueBridgeTable
  • Support
    • Troubleshooting
      • Help with Installation
      • Help with SDV
    • Versioning & Backwards Compatibility Policy
Powered by GitBook

Copyright (c) 2023, DataCebo, Inc.

On this page
  • Error in pip's Dependency Resolver
  • ModuleNotFoundError or AttributeError
  • Other Issues?
  1. Support
  2. Troubleshooting

Help with Installation

PreviousTroubleshootingNextHelp with SDV

Last updated 22 days ago

Error in pip's Dependency Resolver

This error indicates that there are conflicting requirements in the Python libraries you are trying to install. You are likely to encounter this if you already have libraries installed in your environment.

To prevent conflicts, we recommend using a virtual environment (such as ). Ensure that you have the correct requirements and try the installation again in a fresh Python environment dedicated to the SDV.

Are you using a Google Colab notebook? Sometimes Google Colab comes with different default libraries than the ones that SDV requires. Generally, you can ignore the printed errors.

In the top menu bar, click Runtime and then Restart session. After this, you can continue running the rest of your code.

ModuleNotFoundError or AttributeError

These errors may indicate a problem with installation or usage. To debug this, start by verifying that you have the latest SDV version.

import sdv
print(sdv.__version__)

When a version number prints, it should be the latest one found in our .

Installation problems: If this code produces an error or if the version is old, then the newest SDV is not properly installed. Ensure that you have the correct Requirements and try the installation again in a fresh Python environment.

Usage problems: If everything looks ok, then ensure that you are using the correct API and spelling. Starting from version 1.0.0, some modules now use different names. Browse this website to see the latest API.

Other Issues?

For other problems, please . You can browse existing issues and raise a new one if you cannot find a solution.

virtualenv
Release Notes
visit our GitHub