Replies: 1 comment 2 replies
-
What you are seeing here is pip attempting to install your package from its sdist. When this happens,
This step is where, if your pip global config uses a private index, poetry-core is searched for. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Greetings everyone,
Before I commit to logging an issue, I thought I might share my issue with the community to see if there is a solution.
I use poetry in the development of a private project. It works great for dependency management and building a project for distribution to a public or private space. The below .toml file is a likeness of the one used in the building my project, minus the few redacted things for privacy. Now this builds the project with ease and gives me a .whl or tarball file for distribution.
When I setup a venv project on my linux machine and pipenv install myproject I get an error that seems odd.
Why would it be looking for indexes related to poetry-core in my private repo not trying to install from pypi? Now I assume this could be due to the fact that Poetry is not pip installed at the OS level using the curl command Poetry docs provides. I thought thought adding poetry-core as a dependency in my core project pyproject.toml (seen above) would resolve that dependency, but it did not. So does Poetry have to be pip installed at the OS level for any project that uses ["poetry-core>=1.0.0"] as part of the build process?
Beta Was this translation helpful? Give feedback.
All reactions