Skip to content

Latest commit

 

History

History
42 lines (27 loc) · 491 Bytes

File metadata and controls

42 lines (27 loc) · 491 Bytes

Python statistics

Statistics examples in Python.

Dependencies

  • Python3

Setup

For the first time:

Create a virtual environment:

make venv

Activate the virutal environment:

. venv/bin/activate

For VScode terminal, add this in settings.json

  "python.terminal.activateEnvironment": true,
  "python.venvPath": "Add_Venv_DirectoryPath_here",

Install libraries

make setup

Updating dependencies (requirements.txt)

make freeze