I wanted to know what version of virtual env is installed ? My OS is windows 10
Thank you
I wanted to know what version of virtual env is installed ? My OS is windows 10
Thank you
In your terminal use the command:
virtualenv --version
Example output:
15.1.0
If you mean the module that is used in python you can check them with pip freeze
or pip3 freeze
based on the package manager you use.
So it would be like below:
pip freeze | grep virtualenv
output:
virtualenv==16.0.0
C:\Users\donhu\temp2023_01_08>python -m virtualenv --version
virtualenv 20.17.1 from C:\Users\donhu\AppData\Roaming\Python\Python310\site-packages\virtualenv\__init__.py
If you are using Windows and Conda environment. You can use this command to see Virtual Environments:
conda info --envs