Python really makes things difficult :D
You’re absolutely right.
On second thought, I guess I only need these Poetry installs just once anyway: for creating the venv and then never again. That’s not worth it.
So here’s a new method that does away with these extra Poetry installs:
pyenv exec python -m venv .venv && poetry install
Going to adopt this variant from now on, I guess. Thank you for your thoughts!
You’re absolutely right.
On second thought, I guess I only need these Poetry installs just once anyway: for creating the venv and then never again. That’s not worth it.
So here’s a new method that does away with these extra Poetry installs:
assuming that a `poetry.toml` exists with `virtualenvs.in-project` set to `true`.Going to adopt this variant from now on, I guess. Thank you for your thoughts!