django / channels

Developer-friendly asynchrony for Django

Home Page:https://channels.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cannot install channels["daphne"]

alosultan opened this issue · comments

I'm trying to install the app as instructed:

python -m pip install -U channels["daphne"]

but the app won't install.

(.envs) username@username-iMac channels-tutorial % python -m pip install -U channels["daphne"]         
zsh: no matches found: channels[daphne]
  • My OS: macOS Monterey v. 12.6
  • Python 3.9.13
  • pip 22.3

This is a zsh issue. (Try Googling it for more detail)

You need to quote the square brackets.

python -m pip install -U 'channels[daphne]'

That works perfectly thank you.