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

Add pip support #175

Merged
merged 22 commits into from
May 4, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fixes minor typos
  • Loading branch information
ngoiz authored Sep 20, 2021
commit b4c7a3de811c8e81776d7613474ff4d19f1accbf
7 changes: 4 additions & 3 deletions docs/source/content/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ change compilers see the Custom Installation.
```
where the number after the `-j` flag will specify how many cores to use during installation.

4. Finally, leave the build direcotry and install SHARPy
4. Finally, leave the build directory and install SHARPy
```bash
cd ..
pip install .
Expand Down Expand Up @@ -192,11 +192,12 @@ file if you are installing SHARPy on Mac OS X
cd ..
pip install .
```
If you want to install it in devlopment mode (the source files will stay
where the are so you can modify them), use this command
If you want to install it in development mode (the source files will stay
where the are so you can modify them), you can make an editable install:
```
pip install -e .
```
You can obtain further information on editable installs [here](https://pip.pypa.io/en/stable/cli/pip_install/#editable-installs)

8. This concludes the installation! Continue reading the [Running SHARPy](#running-sharpy) section.

Expand Down