About 50 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. python - Using poetry to install from a private repository with a token ...

    Nov 27, 2023 · Poetry picks up credentials from the following variables: POETRY_HTTP_BASIC_{SOURCE_NAME}_USERNAME - for user name, in your case it should be …

  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. python - Poetry looks for packages in global PYTHONPATH first …

    Jan 21, 2025 · On Windows, I have a poetry project which references Python 3.12, and includes dependencies to package A and package B. Poetry was added to my system using pipx in the …

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

    30 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 …

  7. 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 …

  8. python - VSCode doesn't show poetry virtualenvs in select interpreter ...

    Jan 23, 2020 · Installed poetry Python package manager using a standard $ curl method as explained in the official documentation. Started a project by $ poetry new finance-essentials_37-64, installed …

  9. python - How to run a script using pyproject.toml settings and poetry ...

    Dec 11, 2019 · I wrote a Python script (log_revision.py) which save in a database the git commit, few more parameters and in the end sends the .whl (that poetry created) to the remote server (each .whl …

  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.