Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
update install instructions (#64)
Browse files Browse the repository at this point in the history
* update install instructions

* Apply suggestions from code review

Co-authored-by: chaton <thomas@grid.ai>

Co-authored-by: chaton <thomas@grid.ai>
  • Loading branch information
Borda and tchaton authored Feb 3, 2021
1 parent 3ad3a44 commit 2d0e6f8
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,21 +50,25 @@
Pip / conda

```bash
pip install lightning-flash
pip install lightning-flash -U
```

Master
```bash
pip install git+https://github.com/PytorchLightning/lightning-flash.git@master --upgrade
```

Source

``` bash
git clone https://github.com/PyTorchLightning/lightning-flash.git
cd lightning-flash
pip install -e .
```
The latest version from source
- using `pip`
```bash
# with git
pip install git+https://github.com/PytorchLightning/lightning-flash.git@master
# OR from an archive
pip install https://github.com/PyTorchLightning/lightning-flash/archive/master.zip
```
- using native `setuptools`
``` bash
# clone flash repository locally
git clone https://github.com/PyTorchLightning/lightning-flash.git
cd lightning-flash
# install in editable mode
pip install -e .
```

---

Expand Down

0 comments on commit 2d0e6f8

Please sign in to comment.