-
Notifications
You must be signed in to change notification settings - Fork 13
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
[SETUP] Use of VENV (Python virtual environment) #14
Comments
Agreed. It would be best practice to work inside an isolated virtualenv and also making a |
same this @jgabriel1 |
@jbarbosaamancio sorry, typo error, it would be "same as ". |
This If not, in this specific case, it's just another way of using |
Anyways, this really short tutorial should help with setting up the virtualenv on Mac: |
Actually, Poetry uses a virtualenv to manager the dependencies. Poetry has
Pip has not a good dependencies manager when the dependencies need a specific version, and the project can be a mess when others developers change the dependencies. An alternative to Poetry is Pipenv, other dependency manager. |
In a small project, without others developers pip works fine. |
Ok, got it! Just to be clear, I also think it's a good idea to use a more robust package manager than
I've heard of Thanks for the tip on |
Python virtual environment allows with one command the use of the same interpreters and packages by all devs
The text was updated successfully, but these errors were encountered: