码迷,mamicode.com
首页 >  
搜索关键字:ted    ( 12016个结果
Windows下Python中pip安装Pillow报错总结(转载)
遇到的俩种错误1.ValueError: zlib is required unless explicitly disabled using --disable-zlib, aborting 问题原因未知,博主尝试了一下解决方案可以解决问题。博主PC 是 Pthon3.4.3-win32pip in... ...
分类:编程语言   时间:2016-12-17 16:37:35    阅读次数:967
python列表副本
a=[1,2,3] b=[4,5,6] a=a+b #创建含a和b的副本的新列表 a [1, 2, 3, 4, 5, 6] b [4, 5, 6] c=a+b #创建含a和b的副本的新列表 c [1, 2, 3, 4, 5, 6, 4, 5, 6] a [1, 2, 3, 4, 5, 6] b [4... ...
分类:编程语言   时间:2016-12-17 14:14:28    阅读次数:310
python pip安装问题
scipy-0.18.1-cp34-cp34m-win32.whl is not a supported wheel on this platform. 遇到该问题需要更新pip版本 ...
分类:编程语言   时间:2016-12-17 11:30:59    阅读次数:205
Html5NodeJs安装less之千辛万苦CMD系列
如题,这个东西很是费了一般脑筋 上一次讲了如何在浏览器端解析less文件,这次是在cmd中使用npm中的less模块来解析 详解如下 首下我们去下载一个NodeJs, 我下载的是4.44版本,一路next之后,因为文件不大,就直接在C盘了 当然我个人是不推荐在C盘的,你喜欢在哪个盘就哪个盘 进入cm ...
分类:Web程序   时间:2016-12-17 11:30:43    阅读次数:278
[LeetCode] Ones and Zeroes 一和零
In the computer world, use restricted resource you have to generate maximum benefit is what we always want to pursue. For now, suppose you are a domin ...
分类:其他好文   时间:2016-12-17 01:55:20    阅读次数:179
【读书笔记】机器学习-周志华 & 机器学习实战(Python)
这两本放在一起看吧。当然了,我觉得Spark上面的实践其实是非常棒的。有另一个系列文章讨论了Spark。 /Users/baidu/Documents/Data/Interview/机器学习-数据挖掘/《机器学习_周志华.pdf》 一共442页。能不能这个周末先囫囵吞枣看完呢。哈哈哈。 P1 一般用 ...
分类:编程语言   时间:2016-12-16 23:16:13    阅读次数:391
Winform进程、线程
进程: 一般来说,一个程序就是一个进程,不过也有一个程序需要多个进程支持的情况。 进程要使用的类是:Process它在命名空间:System.Diagnostics; 1、静态方法Start(); 2、也可以实例化对象,来调用Start()普通方法,但调用普通方法之前需要给 StartInfo属性设 ...
分类:编程语言   时间:2016-12-16 22:38:58    阅读次数:172
[RxJS] Flatten a higher order observable with mergeAll in RxJS
Among RxJS flattening operators, switch is the most commonly used operator. However, it is important to get acquainted with mergeAll, another flatteni ...
分类:Web程序   时间:2016-12-16 22:36:37    阅读次数:166
[Compose] 8. A curated collection of Monoids and their uses
If change the data a litte bit: Because the view: null, then it will skip .map(sum). ...
分类:其他好文   时间:2016-12-16 21:57:32    阅读次数:161
1.webpack-----模块加载器兼打包工具
一、webpack的优势 1. 能模块化 JS 。 2. 开发便捷,能替代部分 grunt/gulp 的工作,比如打包、压缩混淆、图片转base64等。 3. 扩展性强,插件机制完善,特别是支持 React 热插拔)的功能让人眼前一亮 二、webpack--如何安装 1. 全局安装 node.js ...
分类:Web程序   时间:2016-12-16 19:09:40    阅读次数:166
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!