上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 37 下一页
摘要: project/assembly.sbt 阅读全文
posted @ 2016-10-08 16:03 澄轶 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 分布式深度学习(I) 原文地址 阅读全文
posted @ 2016-10-08 14:32 澄轶 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 在依赖库选项中会看到其中有的是 %%,而有的是一个%。 这表示 :“要求sbt寻找用当前你配置的scala版本编译出来的jar包。” 因为scala不同版本编译出来的结果会不兼容。 阅读全文
posted @ 2016-09-27 14:50 澄轶 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 本地仓库被我搞乱了,一气之下整个删掉了本地仓库,再重启sbt卡在Getting这一步。 Getting org.scala-sbt sbt 0.13.12 ... 卡住 补充sbt配置文件: 文件结构如下:修改了sbtconfig.txt,repo.properties. ├─bin│ sbt│ s 阅读全文
posted @ 2016-09-22 11:42 澄轶 阅读(10947) 评论(0) 推荐(1) 编辑
摘要: 速查手册 常用命令 actions – 显示对当前工程可用的命令 update – 下载依赖 compile – 编译代码 test – 运行测试代码 package – 创建一个可发布的jar包 publish-local – 把构建出来的jar包安装到本地的ivy缓存 publish – 把ja 阅读全文
posted @ 2016-09-21 16:48 澄轶 阅读(674) 评论(0) 推荐(0) 编辑
摘要: 三种方法: 1. 2.更新build.sbt 3.简单暴力,但不一定能保证工程稳定 找到重复报错的包,其中发生冲突的库的配置文件,直接删掉。 我本人就是直接如此暴力解决。干脆利落。但可能会出现其他问题,一定留备份。 阅读全文
posted @ 2016-09-20 16:06 澄轶 阅读(1242) 评论(0) 推荐(0) 编辑
摘要: { "auto_complete": true, "auto_complete_delay": 50, "auto_complete_size_limit": 4194304, "auto_indent": true, "color_scheme": "Packages/Color Scheme - 阅读全文
posted @ 2016-09-20 12:06 澄轶 阅读(440) 评论(0) 推荐(0) 编辑
摘要: 增加hosts配置: 127.0.0.1 www.sublimetext.com127.0.0.1 sublimehq.com127.0.0.1 license.sublimehq.com127.0.0.1 45.55.255.55127.0.0.1 45.55.41.2230.0.0.0 lice 阅读全文
posted @ 2016-09-20 12:04 澄轶 阅读(5655) 评论(0) 推荐(0) 编辑
摘要: I'm converting a json-like string into json, and the following code works in the scala repl But when it is compiled, I'm getting the following error W 阅读全文
posted @ 2016-09-19 15:08 澄轶 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 【一】从第3000行开始,显示1000行。即显示3000~3999行 cat filename | tail -n +3000 | head -n 1000 【二】显示1000行到3000行 cat filename| head -n 3000 | tail -n +1000 *注意两种方法的顺序 阅读全文
posted @ 2016-09-18 14:21 澄轶 阅读(37357) 评论(1) 推荐(2) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 37 下一页