Skip to content

Instantly share code, notes, and snippets.

View ABohynDOE's full-sized avatar

Alexandre Bohyn ABohynDOE

View GitHub Profile
@ABohynDOE
ABohynDOE / pipenv_cheat_sheet.md
Created September 21, 2022 13:12 — forked from bradtraversy/pipenv_cheat_sheet.md
Pipenv cheat sheet for common commands

Pipenv Cheat Sheet

Install pipenv

pip3 install pipenv

Activate

pipenv shell

Create a new project

poetry new <project-name>

Add a new package

Use -D or --dev to add it to the dev dependencies

potry add <package>

Remove a package