Tagged in

setup

Pipenv Tutorial - the official package control for python

Why use Pipenv:

  • Pipenv is essentially a combination of pip and virtualenv (i.e. makes virtual environment), but with better version control
  • It solves the version conflict for packages and sub-dependencies
  • It could automatically install the latest package/dependency that meet all the requirements
  • It is the new STANDARD for …

Setup Virtualenv for Any Project

  • Virtualenv is a very handy tool for creating separate virtual environments for python projects.
  • It is essential and probably mandatory in many cases to use Virtualenv or Virtualenv-like tools (i.e. Anaconda, Pipenv) to run a python project.
  • In this tutorial, I'll show you how to create a virtualenv for …