🏡 Blamechance's Digital Cottage

Search

Search IconIcon to open search

pipenv

Last updated Feb 14, 2024 Edit Source

# Installation

1
2
sudo apt-get remove python3-pipenv
sudo pip3 install pipenv (or sudo pip install pipenv)

# Commands

1
2
3
4
5
6
7
8
# To run/create pipfile
sudo pipenv install

# enter environment:
pipenv shell

# exit: 
deactivate

# Resources