本文主要记录一些学习Python中的小知识以及遇到的坑(持续更新)
1. 最坑爹的错误(Not a git repository (or any of the parent directories): .git)
在学习requests时,使用gunicorn和httpbin搭建测试环境的时候,在virtualenv环境中使以下用命令时候终端出现了这个错误。
>>>> gunicorn httpbin:app
开始还以为是我安装gunicorn或者是httpbin出错了,经过排查发现,原来是我的zsh出现了问题,真是坑爹。
解决方法:
>>>> cd ~/.oh-my-zsh
>>>> git remote add origin https://github.com/robbyrussell/oh-my-zsh.git
>>>> git fetch
>>>> git reset --hard origin/master
这里是参考文件