You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The virtualenv CLI has some options and feature to speed up virtual env creation
--symlink-app-data installs seed packages by symlinking them from a shared cache
--extra-search-dir adds directories that are searched for wheels.
--setuptools=bundle and - --wheel=bundle forces installation of setuptools and wheel package from the virtualenv bundle. Virtualenv no longer installs setuptools and wheel for Python 3.12+
env var PIP_INDEX_URL to set a different index server for downloads.
The text was updated successfully, but these errors were encountered:
The
virtualenv
CLI has some options and feature to speed up virtual env creation--symlink-app-data
installs seed packages by symlinking them from a shared cache--extra-search-dir
adds directories that are searched for wheels.--setuptools=bundle
and ---wheel=bundle
forces installation of setuptools and wheel package from the virtualenv bundle. Virtualenv no longer installs setuptools and wheel for Python 3.12+PIP_INDEX_URL
to set a different index server for downloads.The text was updated successfully, but these errors were encountered: