Here's the error message:

    zsh: no matches found: sqlacodegen[citext]

ie. this message is coming from your shell, not pip. Zsh treats the
[...] part of the command as a filename pattern and tries to expand
it:

    http://zsh.sourceforge.net/Doc/Release/Expansion.html#Filename-Generation

To get zsh to not treat it as a pattern, enclose it in quotes:

    pip install 'sqlalcodegen[citext]'

Hope that helps,

Simon

On Mon, Feb 15, 2021 at 12:38 PM Wilfried L. Bounsi <wilcol...@gmail.com> wrote:
>
> Hello,
>
> I've been trying to enable citext support by following the installation 
> instructions in the README.md file, however it is not working, as you can see 
> in the screenshot below.
>
> I'm on Ubuntu 18.04
>
> Can you help me please?
>
> --
> SQLAlchemy -
> The Python SQL Toolkit and Object Relational Mapper
>
> http://www.sqlalchemy.org/
>
> To post example code, please provide an MCVE: Minimal, Complete, and 
> Verifiable Example. See http://stackoverflow.com/help/mcve for a full 
> description.
> ---
> You received this message because you are subscribed to the Google Groups 
> "sqlalchemy" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to sqlalchemy+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/sqlalchemy/47609864-49d1-4438-852d-9913d329c4fen%40googlegroups.com.

-- 
SQLAlchemy - 
The Python SQL Toolkit and Object Relational Mapper

http://www.sqlalchemy.org/

To post example code, please provide an MCVE: Minimal, Complete, and Verifiable 
Example.  See  http://stackoverflow.com/help/mcve for a full description.
--- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sqlalchemy+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sqlalchemy/CAFHwexf0BTdBXtRd4Fb84TG9f6GhL2Kin5UBahky_SqF_jjdGQ%40mail.gmail.com.

Reply via email to