博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Microsoft Visual C++ 14.0 is required
阅读量:6145 次
发布时间:2019-06-21

本文共 3024 字,大约阅读时间需要 10 分钟。

总所周知 ujson 要比 json 模块高效,可是安装也太麻烦了。之前在 Windows7 中使用 Python2.x 的第三方模块 ujson ,使用pip install ujson 安装时没有问题的,换成 Windows10 的时候报错了。

报错如下:

C:\>pip install ujsonCollecting ujson  Downloading https://files.pythonhosted.org/packages/16/c4/79f3409bc710559015464e5f49b9879430d8f87498ecdc335899732e5377/ujson-1.35.tar.gz (192kB)    100% |████████████████████████████████| 194kB 64kB/sBuilding wheels for collected packages: ujson  Running setup.py bdist_wheel for ujson ... error  Complete output from command c:\programdata\anaconda3\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\niko\\AppData\\Local\\Temp\\pip-install-6naov7i3\\ujson\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d C:\Users\niko\AppData\Local\Temp\pip-wheel-v4jxz935 --python-tag cp36:  running bdist_wheel  running build  running build_ext  building 'ujson' extension  error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.microsoft.com/downloads/  ----------------------------------------  Failed building wheel for ujson  Running setup.py clean for ujsonFailed to build ujsonInstalling collected packages: ujson  Running setup.py install for ujson ... error    Complete output from command c:\programdata\anaconda3\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\niko\\AppData\\Local\\Temp\\pip-install-6naov7i3\\ujson\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record C:\Users\niko\AppData\Local\Temp\pip-record-dnr78gng\install-record.txt --single-version-externally-managed --compile:    running install    running build    running build_ext    building 'ujson' extension    error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.microsoft.com/downloads/    ----------------------------------------Command "c:\programdata\anaconda3\python.exe -u -c "import setuptools, tokenize;__file__='C:\\Users\\niko\\AppData\\Local\\Temp\\pip-install-6naov7i3\\ujson\\setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record C:\Users\niko\AppData\Local\Temp\pip-record-dnr78gng\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in C:\Users\niko\AppData\Local\Temp\pip-install-6naov7i3\ujson\

大体意思就是缺少编译ujson的C++编译工具,经过查阅得知:

Python 2.7需要Microsoft Visual C++ 9.0的库

Python 3.6需要Microsoft Visual C++ 14.0的库

很显然,解决方案只有两种了:

  • 下载whl文件直接安装(Python2和Python3适用)
    下载地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/在这里可以搜索你想要的库!!!使用 pip install xxx.whl 安装即可。
  • 下载Microsoft Visual C++ Build Tools(Python3适用)
    下载微软的C++编译工具,CSDN上下载竟然花钱,气死我了...我特么还是学生呢...在这里下载吧,免费的:http://down.51cto.com/data/2452424下载完成使用管理员权限打开,安装Windows10SDK和.NET框架即可!!!

转载于:https://blog.51cto.com/xvjunjie/2178955

你可能感兴趣的文章
Asp.net 使用正则和网络编程抓取网页数据(有用)
查看>>
Linux设备驱动程序学习 高级字符驱动程序操作[阻塞型I/O和非阻塞I/O]【转】
查看>>
[C++]四种方式求解最大子序列求和问题
查看>>
swift锁屏播放,音乐进度更新,专辑,歌手名显示
查看>>
windows 下将目录映射成盘符
查看>>
js 自定义方法 实现停留几秒 sleep
查看>>
第一章 Java常用集合类总览
查看>>
HTML5的sessionStorage和localStorage
查看>>
Keywords Search (ac 自己主动机)
查看>>
日志完美清理总结
查看>>
javascript获取当前url中的參数
查看>>
《瓦尔登湖》读书随笔
查看>>
DNS缓存
查看>>
Knockout源代码精析-怎样解析demo元素,获取到bindings(二)?
查看>>
Atitit.工作流系统的本质是dsl 图形化的dsl 4gl
查看>>
httpd-2.2.22安装
查看>>
【转】Ubuntu下搭建SVN环境-Apache
查看>>
ganglia收集hbase的metrics
查看>>
Swift纯代码走进UICollectionView
查看>>
ViewPager实现页卡的3种方法(谷歌组件)
查看>>