使用idea创建一个java class的时候会出现如下的warning: this inspection reports usage of the default file template for file header 不管你怎么修改模版都无法消除⚠️,除非你去修改这段注释(详细的解释我在文章的结尾给出了描述).这样看着特别不舒服. 解决方法: The point of it is to remind you to document your code by adding a descri…
把语言环境变量改为英文 将Ubuntu系统语言环境改为英文的en_US.UTF-8 查看当前系统语言环境 locale 编辑配置文件,将zh_US.UTF-8改为en_US.UTF-8,zh改为en sudo nano /etc/default/locale LANG="en_US.UTF-8" LANGUAGE="en_US:en" 继续查看更改后的系统语言变量,假设出现下列错误.说明没安装en_US的local qii@ubuntu:~$ locale loca…
一.问题描述 在亚马逊云服务器使用Nginx+uwsgi部署django项目时,项目可以使用python manage.py runserver正常运行,uwsgi测试也没问题,Nginx也正常启动,nginx.conf和uwsgi.ini的配置也正确,使用uwsgi --ini uwsgi.ini运行项目时,报错: ImportError: libssl.so.10: cannot open shared object file: No such file or directory unabl…
1.Manager.ttinclude <#@ assembly name="System.Core"#> <#@ assembly name="System.Data.Linq"#> <#@ assembly name="EnvDTE"#> <#@ assembly name="System.Xml"#> <#@ assembly name="System.Xm…
使用yum安装mysql服务端: [root@centos ~]# yum -y install mysql-server Loaded plugins: fastestmirror, security Setting up Install Process Loading mirror speeds from cached hostfile epel | : extras | : os | : updates | : Resolving Dependencies --> Running tran…
错误1:ImportError: libcublas.so.10.0: cannot open shared object file: No such file or directory 一般这种问题是版本不兼容 我的情况是:tensorflow-gpu 1.13.1与cuda10.1不兼容,需要使用cuda10.0才可以 好在cuda10.1和cuda10.0对应的都是cudnn7.5.0 cudnn与cuda版本对应:https://developer.nvidia.com/rdp/cudn…
安装python3遇到报错: wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgz ./configure --prefix=/usr/local/Python-3.5.2 --enable-shared make make install ln -s /usr/local/Python-3.5.2/bin/python3 /usr/bin/python3   遇到报错: python3: error while loadin…
error opening trace file: No such file or directory (2) 这个问题的出现是因为运行的测试机android系统版本和项目api不一致导致. 改成一样就不会了,例如,项目选择api4.3 18,测试机安卓版本也是4.3,就ok了…
zabbix3.2启动有如下报错: # service zabbix_server startStarting zabbix_server:  /home/zabbix-server/sbin/zabbix_server: error while loading shared libraries: libmysqlclient.so.18: cannot open shared object file: No such file or directory [失败] 解决方法: 查找这个模块的位置…
执行以下代码,生成唯一的UID $fp = popen("/xxx/bin/tools/uuidgen system", "r");// $uid = fread($fp, 40960); pclose($uid); 问题:返回结果$uid为空.实际上执行popen函数后能够返回内容 resource(39) of type (stream). resource popen ( string $command , string $mode ) 参数:$command…