Skip to content

Instantly share code, notes, and snippets.

View rmmajor's full-sized avatar

Roman Maior rmmajor

View GitHub Profile
@CarlosDomingues
CarlosDomingues / python-poetry-cheatsheet.md
Last active May 5, 2025 10:57
Python Poetry Cheatsheet

Create a new project

poetry new <project-name>

Add a new lib

poetry add <library>

Remove a lib

@bradtraversy
bradtraversy / pipenv_cheat_sheet.md
Last active May 30, 2025 00:31
Pipenv cheat sheet for common commands

Pipenv Cheat Sheet

Install pipenv

pip3 install pipenv

Activate

pipenv shell