@@ -73,7 +73,7 @@ The `plantdb` packages are available through:
73
73
74
74
To create a new conda environment for PlantDB:
75
75
``` shell
76
- conda create -n plantdb ' python=3.10 ' ipython
76
+ conda create -n plantdb ' python=3.11 ' ipython
77
77
```
78
78
79
79
## Installation
@@ -96,16 +96,14 @@ conda install -c romi-eu plantdb plantdb.server plantdb.client
96
96
97
97
### For Developers
98
98
99
- To install the library for development:
100
-
101
- 1 . Clone the repository:
102
- ``` shell
103
- git clone https://github.com/romi/plantdb.git -b dev # clone the 'dev' branch
104
- cd plantdb
105
- conda activate plantdb # activate your environment first!
106
- ```
99
+ To install the library for development, you first have to clone the repository:
100
+ ``` shell
101
+ git clone https://github.com/romi/plantdb.git -b dev # clone the 'dev' branch
102
+ cd plantdb
103
+ conda activate plantdb # activate your environment first!
104
+ ```
107
105
108
- 2 . Install components:
106
+ Then you may proceed to install the following components:
109
107
#### Core library:
110
108
``` shell
111
109
python -m pip install -e src/commons/.
@@ -179,7 +177,7 @@ If you want to use it, simply do:
179
177
docker run -p 5000:5000 -v $ROMI_DB :/myapp/db -it roboticsmicrofarms/plantdb
180
178
```
181
179
182
- ** Obviously you have to install docker first!**
180
+ ** Obviously, you have to install docker first!**
183
181
184
182
## Usage
185
183
@@ -203,7 +201,7 @@ dataset = db.get_scan("real_plant")
203
201
img_fs = dataset.get_fileset(' images' )
204
202
```
205
203
206
- A detailed documentation of the Python API is available here: https://romi.github.io/plantdb/reference.html
204
+ Detailed documentation of the Python API is available here: https://romi.github.io/plantdb/reference.html
207
205
208
206
### Serve the REST API
209
207
@@ -230,7 +228,7 @@ Open your favorite browser here:
230
228
- scans: http://0.0.0.0:5000/scans
231
229
- 'real_plant_analyzed' dataset: http://0.0.0.0:5000/scans/real_plant_analyzed
232
230
233
- A detailed documentation of the REST API is available here: https://romi.github.io/plantdb/webapi.html
231
+ Detailed documentation of the REST API is available here: https://romi.github.io/plantdb/webapi.html
234
232
235
233
## Developers & contributors
236
234
0 commit comments