Feature Request
Can we have an option in poetry add to build a dependency from source instead of just downloading the existing package for the platform?
I am talking something equivalent to pip3 install --no-binary :all: <package> --ignore-installed.
Current work-around is to use poetry run pip3 install .... and then do poetry add --lock to update the lock file. It will be good to have a flag in add to do this easily.
Feature Request
Can we have an option in
poetry addto build a dependency from source instead of just downloading the existing package for the platform?I am talking something equivalent to
pip3 install --no-binary :all: <package> --ignore-installed.Current work-around is to use
poetry run pip3 install ....and then dopoetry add --lockto update the lock file. It will be good to have a flag inaddto do this easily.