diff options
author | Juan J. Martinez <jjm@usebox.net> | 2019-08-15 20:57:25 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2019-08-15 20:57:25 +0100 |
commit | 1b410f77778c246559f99889319e4fc77f1acf2f (patch) | |
tree | 601ea0414183f27e3008fac58aa7c31d912148f8 /README.md | |
parent | dfdce006edcfc6bda105eb81a1fd3c2d8749d1ee (diff) | |
download | z80count-1b410f77778c246559f99889319e4fc77f1acf2f.tar.gz z80count-1b410f77778c246559f99889319e4fc77f1acf2f.zip |
Make clear this is Python 3 only
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -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 |