About 6,190,000 results
Open links in new tab
  1. How do I install python packages with poetry? - Stack Overflow

    Mar 1, 2021 · I am migrating projects to poetry, but I have encountered a problem. For example, this is a simple project, not many modules needed. I installed poetry, used poetry add to add the few …

  2. Python poetry - how to install optional dependencies?

    Apr 1, 2020 · Python's poetry dependency manager allows specifying optional dependencies via command: $ poetry add --optional redis Which results in this configuration: …

  3. How to force reinstall Poetry environment from scratch?

    Nov 22, 2021 · 49 Poetry has some stale dependencies because the use of develop = true packages. Poetry cannot figure out on its own that dependencies have been updated. How do I force Poetry to …

  4. How to change default Python version for poetry? [duplicate]

    Mar 30, 2024 · From Poetry v2 on the currently activated Python version is used to create new virtual environments. virtualenvs.use-poetry-python determines this operation with a default value of false, …

  5. Why is my poetry virtualenv using the system python instead of the ...

    Jan 19, 2020 · If you want to use multiple versions of python you need to make sure poetry is using the correct dependencies for the version of python you are using. To change the specific version poetry …

  6. Python Poetry: how to specify platform-specific dependency alternatives?

    Apr 6, 2020 · It looks like Poetry does not support well platform-specific dependency alternatives when one of the constrain contains a version tag unfortunately. For your solution to work, you would have …

  7. python - poetry, the py launcher, and poetry-plugin-shell - Stack …

    Jan 13, 2025 · Both Python versions have poetry installed using pip. I'd like to use poetry 's shell command since it's unwieldy to type py -3.12 -m poetry all the time (and since I don't want to have to …

  8. How can I specify which Python version poetry should create venv?

    29 I started using Poetry recently. I really like straightforward package management, but I can’t seem to resolve one thing: The Python version it should use. I have Python 3.9 and 3.7 on my machine. 3.7 is …

  9. python - I receive SSL CERTIFICATE_VERIFY_FAILED when doing poetry ...

    Nov 2, 2021 · 2 Python 3.7 when installed on MacOSX systems needs to run a script to install certificate dependencies on your system for python environment via bash.

  10. python - How can I migrate from Poetry to UV package manager?

    Oct 23, 2024 · I'm planning to switch from poetry to the uv Python package manager, but I can't find any migration guides. Currently, I'm using Poetry and already have a pyproject.toml file.