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
Importing virtualenv causes setuptools plugins being executed. So it causes them being initialized and executed multiple times, which is slow. I know that that flaw is not in the build, but importing the unneeded (I always use -n flag) virtualenv and so wasting time and memory on its loading is a flaw by itself.
It is proposed to move importing of virtualenv into the functions actually using it.
The text was updated successfully, but these errors were encountered:
Importing
virtualenv
causessetuptools
plugins being executed. So it causes them being initialized and executed multiple times, which is slow. I know that that flaw is not in thebuild
, but importing the unneeded (I always use-n
flag)virtualenv
and so wasting time and memory on its loading is a flaw by itself.It is proposed to move importing of
virtualenv
into the functions actually using it.The text was updated successfully, but these errors were encountered: