Skip to content

Commit

Permalink
Corrects a few typos
Browse files Browse the repository at this point in the history
  • Loading branch information
StuntsPT committed Dec 19, 2017
1 parent 31d32be commit 0e730fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Due to the way different Operating Systems handle dependencies specific instruct
### GNU/Linux

1. Install python 3. Although python 3 is already installed by default in most modern Linux distributions, sometimes it may not be available (you can type `python3 --version` from a terminal to see if python 3 is installed. If it is, you will have something similar to `Python 3.6.1` printed on your terminal, if it isn't you will either see a "command not found" error, or a helpful message on how to install python 3). In "Debian based" distributions (such as Ubuntu) you can install python 3 by opening a terminal an running the command `sudo apt-get install python3`. In other Linux distributions you can similarly use your package manger to install it. If you do not have administration privileges in your environment, please ask your sysadmin to install python 3 for you. This is the only step that has a hard requirement on administrative privileges.
2. Install `pip`. `pip` is a [package manager for python](https://en.wikipedia.org/wiki/Pip_(package_manager)). If `pip` is not already installed in your system, you can follow the official instructions on how to get it [here](https://pip.pypa.io/en/stable/installing/). **Make sure you run get-pip.py using python 3 in order to be able to use *structure_threader*.** Like this: `python3 get-pip.py`
2. Install `pip`. `pip` is a [package manager for python](https://en.wikipedia.org/wiki/Pip_(package_manager)). If `pip` is not already installed in your system, you can follow the official instructions on how to get it [here](https://pip.pypa.io/en/stable/installing/). **Make sure you run get-pip.py using python 3 in order to be able to use *pyRona*.** Like this: `python3 get-pip.py`
3. Install *pyRona*. Now that you have python 3 and `pip` installed, installing *pyRona* is just one command away: `pip3 install pyRona --user`. The `--user` option installs the software to a local directory, ensuring you do not need administration privileges to perform the installation.
4. Using *pyRona*. Running the command from step 3 will install the program to `~/.local/bin`. You can either run it by calling it directly `~/.local/bin/pyRona` or by adding the location `~/.local/bin` to your shell `$PATH` ([here is a good guide on how to do it](https://unix.stackexchange.com/questions/26047/how-to-correctly-add-a-path-to-path)) and just calling `pyRona`.

Expand All @@ -16,7 +16,7 @@ Due to the way different Operating Systems handle dependencies specific instruct

1. Install python 3. MacOS comes with python 2.7 installed by default, (Mac OSX versions before "Sierra" does not have any version of python installed) but in order to run *pyRona* you will need python 3.4 or above. You can [follow this comprehensive guide to do it](http://python-guide-pt-br.readthedocs.io/en/latest/starting/install3/osx/).
2. Install `pip`. `pip` is a [package manager for python](https://en.wikipedia.org/wiki/Pip_(package_manager)). You can use the guide from step 1 to install it on your system.
3. Install *pyRona*. Now that you have python 3 and `pip` installed, installing *pyRona* is just one terminal command away: `pip3 install structure_threader --user`. The `--user` option installs the software to a local directory, ensuring you do not need administration privileges to perform the installation.
3. Install *pyRona*. Now that you have python 3 and `pip` installed, installing *pyRona* is just one terminal command away: `pip3 install pyRona --user`. The `--user` option installs the software to a local directory, ensuring you do not need administration privileges to perform the installation.
4. Using *pyRona*. Running the command from step 3 will install the program to `~/Library/Python/[PYTHON_VERSION]/bin` (where `PYTHON_VERSION` is the version of python you used, eg. `3.6`). You can either run it by calling it directly `~/Library/Python/[PYTHON_VERSION]/bin/pyRona` or by adding the location `~/Library/Python/[PYTHON_VERSION]/bin` to your shell `$PATH` ([here is a good guide on how to do it](https://unix.stackexchange.com/questions/26047/how-to-correctly-add-a-path-to-path))and just calling `pyRona`.


Expand Down

0 comments on commit 0e730fd

Please sign in to comment.