Installing Keysight ADS wheels into an existing Python virtual environment
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.
Navigate to the ADS wheelhouse directory
Example for Linux:
cd $HPEESOF_DIR/tools/python/wheelhouse
Example for Windows:
cd %HPEESOF_DIR%\tools\python\wheelhouse
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 .
- 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