zsh踩坑记录

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

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

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

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

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

posted @ 2021-03-20 22:02  丹华抱一鷇音子  阅读(205)  评论(0编辑  收藏  举报