Spaces:
Running
Running
kartikmandar
commited on
Commit
·
560e24e
1
Parent(s):
c8e2a05
dependency management
Browse files
README.md
CHANGED
@@ -45,7 +45,7 @@ StingrayExplorer is a data analysis tool designed for quick visualization and ex
|
|
45 |
- Panel
|
46 |
- Holoviews
|
47 |
- Stingray
|
48 |
-
- Other dependencies listed in `
|
49 |
|
50 |
### Setup
|
51 |
|
@@ -61,6 +61,18 @@ StingrayExplorer is a data analysis tool designed for quick visualization and ex
|
|
61 |
cd StingrayExplorer
|
62 |
```
|
63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
## Usage
|
65 |
|
66 |
To run the StingrayExplorer application, execute inside StingrayExplorer:
|
|
|
45 |
- Panel
|
46 |
- Holoviews
|
47 |
- Stingray
|
48 |
+
- Other dependencies listed in `environment.yml`
|
49 |
|
50 |
### Setup
|
51 |
|
|
|
61 |
cd StingrayExplorer
|
62 |
```
|
63 |
|
64 |
+
3. Create and activate the conda environment:
|
65 |
+
|
66 |
+
```bash
|
67 |
+
conda env create -f environment.yml
|
68 |
+
conda activate stingray-env
|
69 |
+
```
|
70 |
+
Note: In case of dependencies clashing refer to individual dependencies and see if the version is correct for Stingray installation.
|
71 |
+
The most important dependencies are as follows:
|
72 |
+
stingray, holoviews, panel
|
73 |
+
You would need to instal the various dependencies to install all this.
|
74 |
+
|
75 |
+
If the import errors are still persisting, see what libraries absence is causing the import and install them from pip or conda forge.
|
76 |
## Usage
|
77 |
|
78 |
To run the StingrayExplorer application, execute inside StingrayExplorer:
|