pangyuteng commited on
Commit
a30e8bc
·
1 Parent(s): a05675c

added NOTEs.md

Browse files
Files changed (1) hide show
  1. NOTES.md +63 -2
NOTES.md CHANGED
@@ -1,10 +1,71 @@
1
  https://huggingface.co/spaces/abidlabs/whisper
2
 
3
-
4
  https://github.com/rii-mango/Papaya/wiki/Configuration
5
 
6
  https://github.com/gradio-app/gradio/issues/4511
7
 
8
  https://www.gradio.app/guides/custom-components-in-five-minutes
9
 
10
- https://www.gradio.app/guides/pdf-component-example
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  https://huggingface.co/spaces/abidlabs/whisper
2
 
 
3
  https://github.com/rii-mango/Papaya/wiki/Configuration
4
 
5
  https://github.com/gradio-app/gradio/issues/4511
6
 
7
  https://www.gradio.app/guides/custom-components-in-five-minutes
8
 
9
+ https://www.gradio.app/guides/pdf-component-example
10
+
11
+ https://huggingface.co/spaces/abidlabs/gradio_rich_textbox/blob/main/Dockerfile
12
+
13
+
14
+
15
+ --
16
+ + downgrade node
17
+
18
+ npm install -g n
19
+ n 18.17.0
20
+
21
+ relaunch terminal
22
+
23
+ + install gradio from source ( https://github.com/gradio-app/gradio/issues/2912 )
24
+
25
+ python3 -m pip install --upgrade pip
26
+ pip install setuptools --upgrade
27
+
28
+ + point python to python3 ( https://stackoverflow.com/questions/69775997/error-when-i-kick-npm-install-in-wsl2-ubuntu )
29
+
30
+ sudo apt install python3 python-is-python3 gcc
31
+
32
+
33
+ --
34
+
35
+
36
+ pip install gradio==4.2.0
37
+ gradio cc create MyComponent --template SimpleTextbox
38
+ cd mycomponent
39
+ gradio cc dev
40
+
41
+ gradio cc create papaya_viewer --template HTML
42
+
43
+ cd papaya_viewer
44
+ gradio cc dev
45
+
46
+
47
+ cd papaya_viewer/frontend
48
+ npm install papaya-viewer
49
+
50
+
51
+
52
+ https://github.com/gradio-app/gradio/issues/6821
53
+
54
+
55
+
56
+ ssh -L 7862:127.0.0.1:7862 -L 7861:127.0.0.1:7861 aigonewrong@throwaway0
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+ --
66
+ https://www.youtube.com/watch?v=IVJkOHTBPn0
67
+
68
+ pip install gradio==4.1.0
69
+
70
+ gradio cc create MutlimodalChatbot --template Chatbot
71
+