In Fedora Linux, while creating virtual environment named "env" with,
python -m venv env
The virtual environment "env" is populated with global site packages. When I activate the environment and install packages, the packages are being installed as global site packages instead to the virtual environment.
But on using,
python3 -m venv env
There are no global site packages, just pip and setuptools are present.
Why is this happening?