Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Korjausehdotus poetry install virheeseen liittyen #288

Open
motsgar opened this issue Nov 4, 2024 · 1 comment
Open

Korjausehdotus poetry install virheeseen liittyen #288

motsgar opened this issue Nov 4, 2024 · 1 comment

Comments

@motsgar
Copy link

motsgar commented Nov 4, 2024

Poetry asennusohjeissa on maininta virheestä johon törmäsin:

```
Installing the current project: poetry-testi (0.1.0)
The current project could not be installed: [Errno 2] No such file or directory: '~/poetry-testi/README.md'
If you do not want to install the current project use --no-root
```
Tämä johtuu siitä, että Poetry yrittää asentaa myös nykyistä projektia, eikä projektissa ole _poetry-testi_-nimistä moduulia. Kyseessä [ei ole](https://github.com/python-poetry/poetry/pull/8369) tekstin ulkonäöstä huolimatta virhe vaan pikemminkin varoitus. Projektin alustaminen on kyllä mennyt läpi, mutta jos et halua varoitusta, voit käyttää komennosta muotoa:

Ilmeisesti uudempi versio poetrystä antaa kumminkin vähän yksityiskohtaisemman virheen:

Warning: The current project could not be installed: No file/folder found for package ohtuvarasto
If you do not want to install the current project use --no-root.
If you want to use Poetry only for dependency management but not for packaging, you can disable package mode by setting package-mode = false in your pyproject.toml file.
In a future version of Poetry this warning will become an error

Oletuksena poetry ilmeisesti olettaa, että sitä käytetään myös projektin paketointiin ja epäonnistuu. Kokeilin lisätä rivin konfiguraation ja virhe katosi.

[tool.poetry]
name = "ohtuvarasto"
version = "0.1.0"
description = ""
authors = ["Matti Luukkainen"]
readme = "README.md"
package-mode = false

[tool.poetry.dependencies]
python = "^3.10"


[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
@mluukkai
Copy link
Collaborator

kiitokset vihjeestä, tämä tullaan lisäämään ensi vuonna kaikkiin projekteihin

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants