From 1b410f77778c246559f99889319e4fc77f1acf2f Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Thu, 15 Aug 2019 20:57:25 +0100 Subject: Make clear this is Python 3 only --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index a1a7260..3f5e9bd 100644 --- a/README.md +++ b/README.md @@ -8,22 +8,24 @@ Z80 assembler syntax I use. ![Demo with vim](https://github.com/reidrac/z80count/raw/master//etc/demo-vim.gif) -## Installation +## Install + +`z80count` requires Python 3. To install for production you can use `pip`: - pip install --user z80count + pip3 install --user z80count Or you can download the package from [z80count's releases tab](https://github.com/reidrac/z80count/releases), unpack and run: - python setup.py install + python3 setup.py install -To install for developmet run: +To install for development run: git clone https://github.com/reidrac/z80count.git cd z80count - pip install -e ".[dev]" + pip3 install -e ".[dev]" ## Usage -- cgit v1.2.3