diff options
author | Aaron LI <aly@aaronly.me> | 2018-10-30 18:48:41 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-10-30 18:48:41 +0800 |
commit | 25f19ca897ccce5eb0cd7a8bc84e143d3e5a0feb (patch) | |
tree | 1bed48f2d7bc903ed2da6bb8eeadf11bfe485495 | |
parent | e035e963aae770681571c8986d5f37f3a4303a76 (diff) | |
download | fg21sim-25f19ca897ccce5eb0cd7a8bc84e143d3e5a0feb.tar.bz2 |
README: Tweak the installation steps a bit
-rw-r--r-- | README.rst | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -68,18 +68,19 @@ Installation $ cd fg21sim/ $ make venv - $ . ./venv/bin/activate + $ . venv/bin/activate + (venv) $ Check to make sure that this virtual environment is activated so that the - default ``python3`` and ``pip3`` is pointed to the virtual environment. + ``python3`` and ``pip3`` are pointed to the virtual environment. 4. Install this software into the virtual environment:: - $ python3 setup.py install + (venv) $ python3 setup.py install 5. You are ready to use this software. Just have a look, e.g.:: - $ fg21sim --help + (venv) $ fg21sim --help Development |