rabin 7 years ago
parent
commit
f0d063510e
1 changed files with 16 additions and 2 deletions
  1. 16 2
      README.md

+ 16 - 2
README.md

@@ -1,5 +1,19 @@
 # jupyter-mysql-kernel
 
-setup:
+## install:
 
-pip install git+https://github.com/shemic/jupyter-mysql-kernel
+`pip install git+https://github.com/shemic/jupyter-mysql-kernel`
+
+## mysql config:
+`
+mkdir -p ~/.local/config/
+vi ~/.local/config/mysql_config.json
+
+{
+    "user"     : "root",
+    "port"     : "3306",
+    "host"     : "127.0.0.1",
+    "charset"  : "utf8"
+    "password" : "123456"
+}
+`