pip编译C的包绕过VC14要求,改为mingw64
众所周知,很多Python的库都需要编译(大概率是用了Cython),这时直接用pip安装会报错:error: Microsoft Visual C++ 14.0 is required.不知为何,我的电脑死活不能安装上VC,只能用mingw作为编译器。编辑你的Python路径/Lib/dis...
This page needs to be cached! Bug Report Can't find cache!
admin 阅读(4285) 评论(0)
众所周知,很多Python的库都需要编译(大概率是用了Cython),这时直接用pip安装会报错:error: Microsoft Visual C++ 14.0 is required.不知为何,我的电脑死活不能安装上VC,只能用mingw作为编译器。编辑你的Python路径/Lib/dis...
admin 阅读(4962) 评论(0)
chrome:https://www.google.com/chrome/thank-you.html?standalone=1&system=true&statcb=0&installdataindex=defaultbrowser&defaultbrowser=1#firefoxhttps...
admin 阅读(10295) 评论(0)
1. 测试磁盘写速度time dd if=/dev/zero of=test.dd bs=1M count=2000 2. 测试磁盘读速度time dd if=test.dd of=/dev/null bs=1M $ yum install fio 0x02 命令随机读:$ fio -f...
admin 阅读(5461) 评论(0)
UserWarning: Distutils was imported before Setuptools. This usage is discouraged and may exhibit undesirable behaviors or errors. Please use Setupt...
admin 阅读(4706) 评论(0)
问题Sanic框架是一个Python3.7+的异步高性能web框架。但是在使用其json返回时,发现中文返回不正确 代码如下:from sanic import Sanic from sanic.request import Request from sanic.response impor...