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

fix create_default_project.sh #2

Open
mtxslv opened this issue Mar 18, 2023 · 0 comments
Open

fix create_default_project.sh #2

mtxslv opened this issue Mar 18, 2023 · 0 comments

Comments

@mtxslv
Copy link
Owner

mtxslv commented Mar 18, 2023

From line 24 on in create_default_project.sh, we see the following sequence of commands:

poetry install
poetry add <some-pkg>

something that is throwing errors. Actually, the order must be the opposite:

poetry add <some-pkg>
poetry install

This is because first we must add anything in order to start the virtual environment. If the venv is not initialized, it makes no sense to install the project into it.

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

1 participant