-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7b76f74
commit bb10d40
Showing
5 changed files
with
20 additions
and
33 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 |
---|---|---|
|
@@ -4,9 +4,6 @@ on: | |
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
deploy: | ||
|
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
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
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 |
---|---|---|
@@ -1,29 +1,25 @@ | ||
# Installation | ||
|
||
Start by cloning the repository to your local machine: | ||
1. Start by cloning the repository to your local machine: | ||
|
||
```bash | ||
git clone https://github.com/mxcube/video-streamer.git | ||
cd video-streamer | ||
``` | ||
git clone https://github.com/mxcube/video-streamer.git | ||
cd video-streamer | ||
|
||
Optionally you can create a [conda](https://docs.conda.io/projects/conda/en/latest/index.html) environment like this: | ||
1. Optionally, you can create and activate a [conda](https://docs.conda.io/projects/conda/en/latest/index.html) environment like this: | ||
|
||
```bash | ||
conda env create -f conda-environment.yml | ||
``` | ||
conda env create -f conda-environment.yml | ||
conda activate video-streamer | ||
|
||
If you skip this part, please make sure to have all necessary packages from `conda-environment.yml` installed. | ||
|
||
Install all dependencies necessary for the code to run either with pip: | ||
1. Install all dependencies necessary for the code to run; either with pip: | ||
|
||
```bash | ||
# for development | ||
pip install -e . | ||
# for development | ||
pip install -e . | ||
|
||
#for usage | ||
pip install . | ||
``` | ||
#for usage | ||
pip install . | ||
|
||
or poetry: | ||
```bash | ||
poetry install | ||
``` | ||
or poetry: | ||
|
||
poetry 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