-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #137 from ethanwhite/pipx
Add pipx installation instructions
- Loading branch information
Showing
2 changed files
with
30 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,23 +20,33 @@ Early stage experiment | |
|
||
### Using pip: | ||
|
||
From PyPI | ||
|
||
```sh | ||
pip install offlinedatasci | ||
``` | ||
|
||
From GitHub (latest development version) | ||
### Using pipx: | ||
|
||
To install just the command line interface (CLI) we recommend [pipx](https://pipx.pypa.io/). [Install pipx](https://pipx.pypa.io/stable/installation/) and then run: | ||
|
||
```sh | ||
pipx install offlinedatasci | ||
``` | ||
|
||
### Installing development versions | ||
|
||
#### Directly From GitHub | ||
|
||
```sh | ||
pip install git+https://[email protected]/carpentriesoffline/offlinedatasci.git | ||
``` | ||
|
||
### For local development: | ||
#### Locally | ||
|
||
Clone the repository and from the root directory run: | ||
|
||
```sh | ||
git clone https://github.com/carpentriesoffline/offlinedatasci.git | ||
cd offlinedatasci | ||
pip install . | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters