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
poetry is sometimes being annoying when python versions change in local development, maybe rye is a better tool
Why poetry is annoying af?
I did run below and produced a binary
poetry shell && poetry install --with dev
poetry run pyinstaller keyboard.spec
./dist/keyboard
then I got import error because my local python version has changed, I did open new terminal and did poetry shell && poetry install then followed the same process, this time executable was run without an error. I am extremely suspicious about the internals of poetry install --with dev also I get bunch of warnings such as below, it is just bad devex
Warning: The current project could not be installed: No file/folder found for package virtual-keyboard
If you do not want to install the current project use --no-root.
If you want to use Poetry only for dependency management but not for packaging, you can disable package mode by setting package-mode = false in your pyproject.toml file.
In a future version of Poetry this warning will become an error!
The text was updated successfully, but these errors were encountered:
poetry is sometimes being annoying when python versions change in local development, maybe rye is a better tool
Why poetry is annoying af?
I did run below and produced a binary
then I got import error because my local python version has changed, I did open new terminal and did poetry shell && poetry install then followed the same process, this time executable was run without an error. I am extremely suspicious about the internals of
poetry install --with dev
also I get bunch of warnings such as below, it is just bad devexThe text was updated successfully, but these errors were encountered: