Pipenv is a new tool for managing dependencies and virtualenv environments for Python projects.
To start a new project:
pipenv install
- instantiates the virtualenvpipenv shell
- activates the virtualenvpipenv install <dependency>
- installs a dependencyexit
- exits out the shell as normally to exit the virtualenvWhen users pull your project they should run
pipenv shell
pipenv install
If you are generating an env for a project that already has a traditional
requirements.txt
file pipenv will autmatically import the contents and create
a Pipfile
for you.
If you need help solving your business problems with software read how to hire me.