Installing Keysight ADS wheels into an existing Python virtual environment

  1. Open a console window and load an existing virtual environment

    The existing venv must have been created from a Python installation with the same major and minor Python version as ADS.

  2. Navigate to the ADS wheelhouse directory

    Example for Linux:

    cd $HPEESOF_DIR/tools/python/wheelhouse
    

    Example for Windows:

    cd %HPEESOF_DIR%\tools\python\wheelhouse
    
  3. Install packages with pip requirements file

    Example for Linux:

    python3 -m pip install -r venv_requirements.txt --find-links .
    

    Example for Windows:

    python -m pip install -r venv_requirements.txt --find-links .
    
  4. To verify packages have been installed

    Example for Linux:

    python3 -m pip list
    

    Example for Windows:

    python -m pip list
    

    You should see various keysight-ads-* wheels listed

On this page