8000 GitHub - ahsanhabib91/try-pipenv
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ahsanhabib91/try-pipenv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pipenv Cheat Sheet

Taken From

Traversy Media
Cheat Sheet: https://gist.github.com/bradtraversy/c70a93d6536ed63786c434707b898d55#file-pipenv_cheat_sheet-md
Youtube: https://www.youtube.com/channel/UC29ju8bIPH5as8OGnQzwJyA

Corey Schafer
Youtube: https://www.youtube.com/watch?v=zDYL22QNiWk&t=282s

Pipenv Doc

Documentation: [link](https://pipenv.readthedocs.io/en/latest/)
Basic_Usage: [link](https://pipenv.readthedocs.io/en/latest/basics/#general-recommendations-version-control)

Install pipenv

pip3 install pipenv

Activate

pipenv shell

Check version of Python

python --version

Check path

python
>>> import sys
>>> sys.executable
quit()

Install a package

pipenv install camelcase

Install from Pipfile(Similar to npm install)

pipenv install

Check local packages

pipenv lock -r

Uninstall a package

pipenv uninstall camelcase

Install a dev package

pipenv install nose --dev

Instal 765B l from requirements.txt

pipenv install -r ./requirements.txt

Check security vulnerabilities

pipenv check

Check dependency graph

pipenv graph

Set lockfile - before deployment(Update Pipfile.lock with current dependencies)

pipenv lock

Ignore pipfile(Install for Production)

pipenv install --ignore-pipfile

Exiting the virtualenv

exit

Run with pipenv

pipenv run *

Remove virtualenv

pipenv --rm

Path to Virtualenv

pipenv --venv

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0