Skip to content

Instantly share code, notes, and snippets.

@grahamcrowell
Last active April 29, 2018 02:41
Show Gist options
  • Save grahamcrowell/231eec4e8ad0a0d2c657c1b8ecdf63a4 to your computer and use it in GitHub Desktop.
Save grahamcrowell/231eec4e8ad0a0d2c657c1b8ecdf63a4 to your computer and use it in GitHub Desktop.
Intro to pipenv

Intro to pipenv

How To

Initialize a new project

  • open vscode in the root of the project
  • open terminal in vscode
  • type pipenv shell

Expect output similar to:

Creating a virtualenv for this project…
Using c:\program files\python36\python.exe (3.6.5) to create virtualenv…
Already using interpreter c:\program files\python36\python.exe
Using base prefix 'c:\\program files\\python36'
New python executable in C:\Users\<username>\.virtualenvs\<folder name>-<random characters>\Scripts\python.exe
Installing setuptools, pip, wheel...done.```

Prerequisites

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment