Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Latest commit

 

History

History
18 lines (16 loc) · 382 Bytes

File metadata and controls

18 lines (16 loc) · 382 Bytes

Experiments with Python


Preparations for Ubuntu:

sudo apt-get update
sudo apt-get install python-pip python-dev build-essential
sudo pip install -U pip setuptools virtualenv
virtualenv --clear .venv && source .venv/bin/activate
pip install -U -r requirements.txt
py.test -vv

To run only Code Style checks:

flake8 experiments/
pylint experiments/