fastapi-cache icon indicating copy to clipboard operation
fastapi-cache copied to clipboard

Alternative PyPi package names not available

Open joeflack4 opened this issue 2 years ago • 2 comments

The README.md says the following are both literally possible.

pip install fastapi-cache2[redis] pip install fastapi-cache2[memcache]

But they are not:

pip install fastapi-cache2[redis]
zsh: no matches found: fastapi-cache2[redis]

I'm also not seeing these package names on PyPi.

joeflack4 avatar Jul 30 '21 23:07 joeflack4

In cli you need to use double quote: pip install "fastapi-cache2[redis]"

MariusMez avatar Sep 23 '21 16:09 MariusMez

Ah, thank you sir. I'll go ahead and make a PR to update the documentation.

joeflack4 avatar Sep 23 '21 20:09 joeflack4