Home > OS >  Poetry managing environment System python
Poetry managing environment System python

Time:07-24

When I run poetry env info - I get the following:

Virtualenv
Python:         3.9.13
Implementation: CPython
Path:           /Users/me/Library/Caches/pypoetry/virtualenvs/my.project-NEejG4ix-py3.9
Valid:          True

System
Platform: darwin
OS:       posix
Python:   /usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9

What is the System and how does the System Python get set ?

CodePudding user response:

Your platform and OS are basic software information. As it says, you're on a Mac (Darwin) and all Macs have a Posix runtime environment.

The Python path comes from whereever within your macOS you've got Python installed.

All of these details can be found in the Python os module methods

CodePudding user response:

I do not know much about python-poetry, but I can get you show you some resources that might help.

  1. This contains some notes about python-poetry

  2. This is the github repository where you can open an issue and close it when resolved

You can also find the discussions tab there, where you can open a discussion with the python-poetry community.

  • Related