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
Because
* poetry install takes significantly longer to install python packages
This commit
* Uses poetry to generate a requirements file and then uses pip to actually install everything
* I made a node that we should revert this when the new parallel poetry installer comes out
poetry install
is noticeably slower thanpip install
, on my local machine for Experimenter it comes out to:poetry install
: 3mpip install
: 50sSo I as just reading through python-poetry/poetry#338 and someone suggested doing
poetry export -f requirements.txt --dev | pip install -r /dev/stdin
See: python-poetry/poetry#338 (comment)
So let's do that until their new parallel installer:
python-poetry/poetry#2595
is released.
┆Issue is synchronized with this Jira Task
┆Issue Number: EXP-361
The text was updated successfully, but these errors were encountered: