上一页 1 2 3 4 5 6 7 8 ··· 33 下一页
摘要: https://www.cnblogs.com/xing901022/p/4951603.html 阅读全文
posted @ 2020-11-11 10:55 Go_Forward 阅读(192) 评论(0) 推荐(0) 编辑
摘要: export CC=$(which gcc)export CXX=$(which g++)pip install fbprophet CC=clang pip install gevent 阅读全文
posted @ 2020-10-25 16:02 Go_Forward 阅读(670) 评论(0) 推荐(0) 编辑
摘要: ubuntu install redis apt-get update apt-get install redis-server redis-server --daemonize yes 关闭 sudo service redis-server stop sudo service redis-ser 阅读全文
posted @ 2020-10-22 18:51 Go_Forward 阅读(82) 评论(0) 推荐(0) 编辑
摘要: macos, 在rpc调用request请求时,在proxy_bypass_macosx_sysconf 无法返回 解决方法: import requests session = requests.Session() session.trust_env = False response = sess 阅读全文
posted @ 2020-10-21 16:40 Go_Forward 阅读(141) 评论(0) 推荐(0) 编辑
摘要: http://json.cn/ 阅读全文
posted @ 2020-10-16 18:40 Go_Forward 阅读(62) 评论(0) 推荐(0) 编辑
摘要: DJANGO_SETTINGS_MODULE=app.settings # 在run的配置中添加环境变量 https://www.cnblogs.com/buxizhizhoum/p/13667870.html 阅读全文
posted @ 2020-10-14 22:50 Go_Forward 阅读(60) 评论(0) 推荐(0) 编辑
摘要: sqlalchemy insert on duplicate update from sqlalchemy.dialects.mysql import insert insert_stmt = insert(my_table).values( id='some_existing_id', data= 阅读全文
posted @ 2020-09-24 14:36 Go_Forward 阅读(927) 评论(0) 推荐(0) 编辑
摘要: head -c 32 /dev/random | base64 ref: https://blog.csdn.net/wy1550365215/article/details/77446501 阅读全文
posted @ 2020-09-22 20:30 Go_Forward 阅读(147) 评论(0) 推荐(0) 编辑
摘要: celery -A proj worker --loglevel=info 这个错误原因在于proj这里没有包含对应的task, 可以在这里导入需要的task即可 阅读全文
posted @ 2020-09-18 21:46 Go_Forward 阅读(1108) 评论(0) 推荐(0) 编辑
摘要: thread pool import concurrent.futures import urllib.request URLS = ['http://www.foxnews.com/', 'http://www.cnn.com/', 'http://europe.wsj.com/', 'http: 阅读全文
posted @ 2020-09-18 13:22 Go_Forward 阅读(124) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 33 下一页