hi @nan_dou ! Glat to hear that!
You run Embedded mode from “within” the client.
It will first then download the go binary and run it for you.
This is all you need for running with python:
import weaviate
client = weaviate.connect_to_embedded()
print(client.get_meta().get("version"))
now you content will be stored, by default, at ~/.local/share/weaviate/
(unless you specify otherwise)
Let me know if that helps!
Thanks!