This hook is sourced after this virtualenv is activated
Specify in your_venv_home/your_venv_name/bin/postactive
Pipenv Usage
Install
1
pip install pipenv
Usage
Quick Start
1 2 3 4 5 6
cd myproject pipenv install # create virtual environment pipenv install request # or install module pipenv --venv # show location of this virtual environmenfuzzy findert pipenv --py # show location of this python interpreter pipenv shell # activate
Create a new project using Python 3.7, specifically
1
pipenv --python 3.7
Remove project virtualenv (inferred from current directory):
1
pipenv --rm
Install all dependencies for a project (including dev):
1
pipenv install --dev
Create a lockfile containing pre-releases:
1
pipenv lock --pre
Show a graph of your installed dependencies:
1
pipenv graph
Check your installed dependencies for security vulnerabilities:
1
pipenv check
Install a local setup.py into your virtual environment/Pipfile: