Using venv
Creating a virtual environment
Activating the virtual environment
Deactivating a virtual environment
Last updated
Was this helpful?
Virtual environments (venv) are self-contained directories that contain a Python installation for a particular version of Python, plus a number of additional packages.
This method will inherit the surrounding dbt virtual environment, including all dbt packages.
To create a virtual environment in Paradime IDE:
Open the terminal in the Paradime Code IDE.
Navigate to your project directory.
Run the following command:
This creates a new virtual environment named my_venv in your current directory.
To activate a virtual environment, run:
To exit the virtual environment, simply run:
Last updated
Was this helpful?
Was this helpful?
python -m venv my_venvsource my_venv/bin/activatedeactivate