自己学习
wendy8888888
这个作者很懒,什么都没留下…
展开
-
python使用报错ModuleNotFoundError: No module named ‘requests‘
原因:未安装第三方库requests 使用pip安装requests: pip install requests 若提示-bash: pip: command not found,则表示未安装pip 安装pip: curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py sudo python3 get-pip.py 查看pip:安装的python3,如果是python2使用 pip--version pip3 --version.原创 2020-09-03 15:31:58 · 202 阅读 · 0 评论 -
Spring @service自动装配失败
classA里定义了一些属性,使用@service自动装配bean classB使用A,使用@Autowired注入,运行后报错 严重: Caught exception while allowing TestExecutionListener [org.springframework.test.context.support.DependencyInjectionTestExecutionLis...原创 2019-02-27 17:57:57 · 2082 阅读 · 0 评论 -
Linux里发curl命令模拟http get/post请求
网络互通的情况下,直接使用postman发get/post请求很方便,但是在网络不能直连情况下,得借助远程登录去访问,这时postman就不好使了,这时可以远程到机器使用curl命令发请求 GET -X GET可省略,-H header, 带参数在url里&拼接 1、get不带参数 curl -X GET http://ip:port/my/user/info 或 直接省略-X cu...原创 2019-04-17 20:51:03 · 627 阅读 · 0 评论 -
安装python3
mac自带python2版本,python3新技能不能使用 1、安装homebrew(传说这是个mac安装神器),输入下面命令即可 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 安装成功后如下提示: 2、安装python3 brew search...原创 2019-05-22 12:16:11 · 505 阅读 · 0 评论