From 93c8c59f8c13892403b488c1bad47d8d96819e58 Mon Sep 17 00:00:00 2001 From: David Heimann Date: Thu, 14 Dec 2017 22:20:25 -0500 Subject: [PATCH] pipenv: add page (#1791) --- pages/common/pipenv.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/pipenv.md diff --git a/pages/common/pipenv.md b/pages/common/pipenv.md new file mode 100644 index 000000000..e0158eb7a --- /dev/null +++ b/pages/common/pipenv.md @@ -0,0 +1,28 @@ +# pipenv + +> Simple and unified Python development workflow. +> Manages packages and the virtual environment for a project. + +- Create a new project: + +`pipenv` + +- Create a new project using Python 3: + +`pipenv --three` + +- Install a package: + +`pipenv install {{package_name}}` + +- Install all the dependencies for a project (including dev): + +`pipenv install --dev` + +- Uninstall a package: + +`pipenv uninstall {{package_name}}` + +- Start a shell within the created virtual environment: + +`pipenv shell`