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
I don't like it when venv creation takes 2 seconds. Especially since I know it can be faster.
virtualenv would be the prime example, which is super fast by default.
I added microvenv which was super simple, but the problem with microvenv is that we have to run python -m ensurepip after which is really slow.
I looked at micropip from pyodide, and installer from pypa, and both don't fit our usecase.
So realistically, I'll have to figure out how virutalenv does it this fast. I have my ideas, such as it may just be copying or symlinking some stuff to get pip.
The text was updated successfully, but these errors were encountered:
I don't like it when venv creation takes 2 seconds. Especially since I know it can be faster.
virtualenv
would be the prime example, which is super fast by default.I added
microvenv
which was super simple, but the problem withmicrovenv
is that we have to runpython -m ensurepip
after which is really slow.I looked at
micropip
from pyodide, andinstaller
from pypa, and both don't fit our usecase.So realistically, I'll have to figure out how virutalenv does it this fast. I have my ideas, such as it may just be copying or symlinking some stuff to get pip.
The text was updated successfully, but these errors were encountered: