摘要:
1.进入cmd,创建pip文件夹 在文件夹下创建pip.ini文件,内容如下 [global] index-url=http://pypi.douban.com/simple/[install]trusted-host=pypi.douban.com 再次执行pip install XX 成功 阅读全文
随笔档案-2021年05月
TypeError: 'module' object is not callable
2021-05-26 10:29 by HQS_blog, 355 阅读, 收藏, 编辑
摘要:
import unittestfrom base import BaseMethodfrom page.login.LoginClass import LoginClassclass TestLogin(unittest.TestCase): def test_01(self): print("开始 阅读全文