Message 336322 - Python tracker (original) (raw)

Running Windows 10 Enterprise. Create a virtual environment:

python -m venv .venv

Activate that virtual environment and attempt to create another virtual environment using the same command.

This new environment will not contain pip (or anything other than just Python).

Investigating this further. Running:

python -Im ensurepip --upgrade --default-pip

from within the second virtual environment results in:

Requirement already up-to-date: pip in


I want to create a python tool that will build a virtual env, but this restricts me from being able to install that tool into a virtual env (e.g. using pipx).