You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The mentorship backend currently uses the virtualenv package manager. It track of installed packages with requirements.txt file. However a better option is available in form of pipenv.
Describe the solution you'd like
pipenv advantages
Instead of having to save dependency names using pip freeze > requirements.txt pipenv automatically documents installed dependencies to Pipfile
Creates a dependency graph using Pipfile.lock file. This keeps track of complex inter dependencies between packages.
Describe alternatives you've considered
Other package managers like --venv. It comes by default with Python3 and is very similar to virtualenv
Additional context
Shall make a PR soon
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
The mentorship backend currently uses the virtualenv package manager. It track of installed packages with requirements.txt file. However a better option is available in form of pipenv.
Describe the solution you'd like
pipenv advantages
pip freeze > requirements.txt
pipenv automatically documents installed dependencies toPipfile
Pipfile.lock
file. This keeps track of complex inter dependencies between packages.Describe alternatives you've considered
Other package managers like --venv. It comes by default with Python3 and is very similar to
virtualenv
Additional context
Shall make a PR soon
The text was updated successfully, but these errors were encountered: