From ba31b3259ddebf7e2ed293b0feb7be1c9569068b Mon Sep 17 00:00:00 2001 From: Farid Zakaria Date: Mon, 25 Sep 2023 02:15:46 +0000 Subject: [PATCH] cleaned up installation instructions --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0f58902..58e69d5 100644 --- a/README.md +++ b/README.md @@ -81,9 +81,7 @@ erDiagram ## Installation ```console -❯ python3 -m venv venv -❯ source venv/bin/activate -❯ pip install . +❯ pip install sqlelf ❯ sqlelf /usr/bin/python3 -- \ --sql "select mnemonic, COUNT(*) from elf_instructions GROUP BY mnemonic ORDER BY 2 DESC LIMIT 3" @@ -261,6 +259,8 @@ WHERE You may want to install the package in _editable mode_ as well to make development easier ```console +> python3 -m venv venv +> source venv/bin/activate > pip install --editable ".[dev]" ```