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
Christine Vinaviles edited this page Oct 5, 2018
·
1 revision
What is Pipenv?
Pipenv, serves to simplify the management of dependencies in Python-based projects. It brings together Pip, Pipfile and Virtualenv to provide a straightforward and powerful approach to package management. To get started, install pipenv using your pip manager for python3:
$ pip install pipenv
Then, to install the specific dependencies for this project, navigate to the project directory and run:
user@foo: ~ $ cd irs
user@foo: ~/irs $ pipenv install --ignore-pipfile
... pipenv does it's thing ...
You are now ready to tango! The easiest way to see if it worked is to drop into a virtualenv and run the test suite: