George commited on
Commit
4dbba62
1 Parent(s): 3cf8def

upd md to fix env tutorial

Browse files
Files changed (2) hide show
  1. README.md +4 -7
  2. requirements.txt +2 -2
README.md CHANGED
@@ -14,18 +14,15 @@ pinned: false
14
  - 模型开源, 持续更新.
15
 
16
  # 安装
17
- 先安装 Anaconda, 然后执行
18
  ```
19
- git clone https://github.com/quarrying/quarrying-insect-id.git
20
- cd quarrying-insect-id
21
- conda create -n insectid python=3.6 -y
22
- conda activate insectid
23
  pip install -r requirements.txt
24
  ```
25
 
26
  # 用法
27
-
28
- 参考 [demo.py](<demo.py>), 也可以在我的个人网站 (<https://www.quarryman.cn/insect>) 体验识别效果.
29
 
30
 
31
  # ChangeLog
 
14
  - 模型开源, 持续更新.
15
 
16
  # 安装
17
+ 先安装 Miniconda, 然后执行
18
  ```
19
+ echo y | conda create -n insect python=3.9
20
+ conda activate insect
 
 
21
  pip install -r requirements.txt
22
  ```
23
 
24
  # 用法
25
+ 拖拽含有昆虫的图片进网页,点击 Detect
 
26
 
27
 
28
  # ChangeLog
requirements.txt CHANGED
@@ -1,6 +1,6 @@
1
  opencv-python>=4.5
2
  numpy>=1.11.1
3
- pillow==6.2.1
4
  lxml
5
  requests
6
- onnxruntime
 
 
1
  opencv-python>=4.5
2
  numpy>=1.11.1
 
3
  lxml
4
  requests
5
+ onnxruntime
6
+ Pillow