Skip to content

Commit

Permalink
Update install in quickstart
Browse files Browse the repository at this point in the history
  • Loading branch information
ckoerber committed Nov 5, 2021
1 parent d4dbfe4 commit a18bb4e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions doc/source/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@

## Install

To install the package and its dependencies, run
```
To install the package and its dependencies, clone the repository and run the following command in the repository root directory
```bash
pip install --upgrade numpy scipy
pip install [-e] .
```
or equivalently _(let pip do the cloning)_
```bash
pip install --upgrade numpy scipy
pip install git+https://github.com/ckoerber/lsqfit-gui@master
```

_(`lsqfit` and `gvar` require `numpy` and `scipy` as build dependencies. Installing these packages before install `gvar` ensures a smooth installation.)_

## Usage
Expand Down

0 comments on commit a18bb4e

Please sign in to comment.