-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix pip installation url for the ingestion CLI
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 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 |
---|---|---|
|
@@ -36,7 +36,7 @@ To install the C-Elegans CLI tool you have 3 options: | |
If you have been provided with a GitHub access token, you can install the tool by running the following command: | ||
|
||
```bash | ||
pip install "git+https://github.com/MetaCell/c-elegans-app.git@feature/CELE-78#egg=ingestion&subdirectory=ingestion" | ||
pip install "git+https://github.com/MetaCell/c-elegans-app.git@develop#egg=ingestion&subdirectory=ingestion" | ||
``` | ||
|
||
The access token will be prompted as the password during installation. | ||
|
@@ -48,7 +48,7 @@ If you prefer using SSH for installation, ensure you have set up an SSH key on y | |
Once your SSH key is set up, install the CLI tool by running: | ||
|
||
```bash | ||
pip install "git+ssh://[email protected]/MetaCell/c-elegans-app.git@feature/CELE-78#egg=ingestion&subdirectory=ingestion" | ||
pip install "git+ssh://[email protected]/MetaCell/c-elegans-app.git@develop#egg=ingestion&subdirectory=ingestion" | ||
``` | ||
|
||
### From Source | ||
|