1. zsh: no matches found: uvicorn[standard]

  • 方法一
# 在~/.zshrc中添加下面这句话
setopt no_nomatch
# 然后source ~/.zshrc
source ~/.zshrc

再重新进去执行安装就好了pip install uvicorn[standard]

  • 方法二
pip install 'uvicorn[standard]'

该方法是将需要安装的部分加上引号,单双引号都可以。

相关文章: