今天在Mac下通过pip安装httpx[socks]的时候报错no matches found httpx[socks],很意外的一个错误。
搜索了一下是可以解决的,需要加个环境变量。
编辑~/.zshrc
文件,加入一行
setopt no_nomatch
保存后执行 source ~/.zshrc
,再重新安装就没问题啦。
需要说明的是,这个方法适用所有类似的no matches错误。
Home of Little Jelly
今天在Mac下通过pip安装httpx[socks]的时候报错no matches found httpx[socks],很意外的一个错误。
搜索了一下是可以解决的,需要加个环境变量。
编辑~/.zshrc
文件,加入一行
setopt no_nomatch
保存后执行 source ~/.zshrc
,再重新安装就没问题啦。
需要说明的是,这个方法适用所有类似的no matches错误。