Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 491 Bytes

virtualenv.rst

File metadata and controls

27 lines (18 loc) · 491 Bytes

Python virtualenv

About

virtualenv is a tool to create isolated Python environments. We recommend it for installing the software and its dependencies independently of your Python distribution.

Install

Create a Python virtualenv:

python3 -m venv .venv

Install:

# Activate virtualenv
source .venv/bin/activate

# Install Python package
pip install phenodata[sql]