Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
When I attempted to install zipline with my own provided postgres instance, it crashed with the
ERROR: function gen_random_uuid()
error.It appears that postgres requires uuid extensions enabled. You can fix this by performing following queries:
CREATE EXTENSION pgcrypto;
CREATE EXTENSION "uuid-ossp";
Maybe this could be added to the docs?
Beta Was this translation helpful? Give feedback.
All reactions