aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJuan J. Martinez <jjm@usebox.net>2019-08-15 20:57:25 +0100
committerJuan J. Martinez <jjm@usebox.net>2019-08-15 20:57:25 +0100
commit1b410f77778c246559f99889319e4fc77f1acf2f (patch)
tree601ea0414183f27e3008fac58aa7c31d912148f8 /README.md
parentdfdce006edcfc6bda105eb81a1fd3c2d8749d1ee (diff)
downloadz80count-1b410f77778c246559f99889319e4fc77f1acf2f.tar.gz
z80count-1b410f77778c246559f99889319e4fc77f1acf2f.zip
Make clear this is Python 3 only
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 7 insertions, 5 deletions
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