yangs16 commented on PR #1483:
URL: https://github.com/apache/cloudberry/pull/1483#issuecomment-3685621876

   > ```
   > postgres=# CREATE EXTENSION aifun;
   > ERROR:  required extension "plpython3u" is not installed
   > HINT:  Use CREATE EXTENSION ... CASCADE to install required extensions too.
   > 
   > postgres=# create extension plpython3u;
   > CREATE EXTENSION
   > 
   > postgres=# CREATE EXTENSION aifun;
   > ERROR:  required extension "vector" is not installed
   > HINT:  Use CREATE EXTENSION ... CASCADE to install required extensions too.
   > 
   > postgres=# create extension vector;
   > ERROR:  could not open extension control file 
"/usr/local/cloudberry-db/share/postgresql/extension/vector.control": No such 
file or directory
   > ```
   > 
   > Does the aifun need the pgvector as a required dependency too?
   
   You can try with:
   ```sql
   CREATE EXTENSION aifun CASCADE;
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to