Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix command-line formatting in README.md #480

Merged
merged 1 commit into from
Mar 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,43 +96,43 @@ The downloadable executable runs directly, and requires no installation.

1. Clone repo and cd into the directory

git clone https://github.com/NanoVNA-Saver/nanovna-saver
cd nanovna-saver
git clone https://github.com/NanoVNA-Saver/nanovna-saver
cd nanovna-saver

2. Run the pip installation

pip3 install .
pip3 install .

3. Once completed run with the following command

NanoVNASaver
NanoVNASaver

#### Ubuntu 20.04

1. Install python3.8 and pip

sudo apt install python3.8 python3-pip
python3 -m venv ~/.venv_nano
. ~/.venv_nano/bin/activate
pip install -U pip
sudo apt install python3.8 python3-pip
python3 -m venv ~/.venv_nano
. ~/.venv_nano/bin/activate
pip install -U pip

2. Clone repo and cd into the directory

git clone https://github.com/NanoVNA-Saver/nanovna-saver
cd nanovna-saver
git clone https://github.com/NanoVNA-Saver/nanovna-saver
cd nanovna-saver

3. Update pip and run the pip installation

python3 -m pip install .
python3 -m pip install .

(You may need to install the additional packages python3-distutils,
python3-setuptools and python3-wheel for this command to work on some
distributions.)

4. Once completed run with the following command

. ~/.venv_nano/bin/activate
python3 nanovna-saver.py
. ~/.venv_nano/bin/activate
python3 nanovna-saver.py


#### MacPorts
Expand Down