Symptoms Consider the following scenario: In Microsoft SQL Server 2017, you have a distribution a…
标签:编程问答
[tensorflow]的安装
1 pip install 最简单直接的方法,通过pip install安装,命令如下: pip install tensorflow-gpu //安装gpu版tensorflow pip install tensorf…
Java编码常见的Log日志打印问题
前言 本文总结了作者在Java代码检视中遇到的一些关于日志打印的问题,并给出修改建议。因能力有限,难免存在错漏,欢迎指正。 一. 不规范的异常打印 使…
linux下:zsh: ./startup.sh: bad interpreter: /bin/sh^M: no such file or directory
在ubunu下装tomcat的时候,刚装好然后运行./startup.sh准备打开tomcat的时候就报了这个错误: zsh: ./startup.sh: bad interpreter: /bin/sh^M: no s…
Failed to open device: /dev/symbdsnapctl, errno: 2
问题 安装Agent for Linux,在/var/log/messages提示错误:Failed to open device: /dev/symbdsnapctl, errno: 2 错误 ‘SYMBD…
nexus启动失败:Could not start Nexus, bad IO exception! java.io.EOFException: input contained no data
昨天公司断电,测试机挂了。在上面的nexus服务也挂了。上去重启的时候,发现启动失败,在日志中发现了如下报错 org.sonatype.nexus.NxApplication - Could not start Nexu…
NPM Warn: ENOENT: no such file or directory
Now type the command to auto generate the package.json npm init --yes
docker.service failed 问题解决
[root@localhost laradock]# systemctl enable docker && systemctl start docker A dependency job for dock…
Git push 处理报错:remote: error: cannot lock ref 'refs/heads/master': Unable to create '/var/opt/gitlab/git-data-file11/repositories/tomfriwel/test.git/./refs/heads/master.lock': File exists.
报错与处理过程: $ git push Counting objects: 21, done. Delta compression using up to 8 threads. Compressing objects: …
2018-03-29-如何搭建博客
如何用4元钱+30分钟创建的自己博客? 本文适合给小白用户学习搭建哦!ps:网上有一些教程说是给小白看的,但是照着操作还是建不了站…主要原因可能是程序员眼中的小白和我这个工科和艺术交叉学科下的小白不是一个le…
scrapy crawl 运行失败
觉得最近学习的一半时间都花在环境配置上面了,刚解决一个问题,又碰到一个问题,scrapy crawl运行失败。解决参考如下: 在使用scrapy爬虫的过程中,在命令控制台输入scrapy crawl demo 出现Mod…
gin框架使用注意事项
gin框架使用注意事项 本文就说下这段时间我在使用gin框架过程中遇到的问题和要注意的事情。 错误处理请求返回要使用c.Abort,不要只是return 当在controller中进行错误处理的时候,发现一个错误,往往要…