#inst

【laravel54】composer install与composer update的区别

1、基础概念:我们需要明白laravel项目里面有2个配置文件,composer.json和composer.lock文件,前者是下载的依赖包配置文件,后者是锁定的包版本信息。使用之前,需要cd进入项目根目录:执行》》》2、composerinstall:会优先调用下载composer.lock文件里面的类库版本,与线...

HDU 4756 Install Air Conditioning(次小生成树)

题目大意:给你n个点然后让你求出去掉一条边之后所形成的最小生成树。比較基础的次小生成树吧。。。先prime一遍求出最小生成树。在dfs求出次小生成树。ProblemDescription  NJUSTcarriesonthetraditionofHaJunGong.NJUST,whokeepsupt...

Cannot use ImageField because Pillow is not installed

在django的models.py在有例如以下代码。 运行python manage.py runserver后报错:class Article(models.Model):    title = models.Char...

tomcat报错this web application instance has been stopped already问题

 上网搜了下,大部分的报错原因:重启时候之前的tomcat未正常关闭,导致在重启时候报了这个问题。mac下解决:ps-ef|greptomcat   找到在进行的tomcat,kill-9 进程号,关闭即可。 然而自己的原因是:编译的target目录有两个同样...

mvn install 时候报GBK编码错误解决办法

在pom.xml里面<properties><!--文件拷贝时的编码--><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><project.reporting.outputEncod...

spring mvc Error instantiating class ** with invalid types () or values (). Cause: java.lang.NoSuchMethodException:

 一般引起这种问题的原因是bean和mapper里面的字段未对应上,或者bean里面没有默认的构造函数引起的。我今天是后面的一个,自己写了带参数的构造函数引起的这个问题。。。...

再次Pyinstaller犯错之旅

总觉得Pyinstaller这个包挺好用,这不,今天又用上了之前写过一些脚本来优化办公和一些杂事,比如一些刷课之类得小程序,今天是要打包一个GUI程序。程序中用到了pandas、jieba、numpy、tkinter(不要问我为什么用tkinter,因为PtQt5得坑我还没有踩完!)最大得坑:由于要用到excel文件,...

Ubuntu18.04 instsall XMind_8 and crack

wgethttps://www.xmind.cn/xmind/downloads/xmind-8-update8-linux.zip#downloadxmind8linuxtarballwgethttps://eastasia1-mediap.svc.ms/transform/zipcontent?provider=s...

ubuntu18.04 install rar

sudoapt-getupdate#如果好久没有更新资源建议update一次sudoapt-getinstallrar#安装rarsudoapt-getinstallunrar#安装unrarsudoapt-getinstallp7zip-rar#安装p7zip-rarsudoapt-getinstallp7zip*#...
代码星球 ·2020-04-05

make install 时指定安装路径

The makeinstalltargetdirisrepresentationedbyvar: DESTDIR,ifwesetthisvartothelocationwhichwewanttoinstalledto,thenwecanhavethebuildresultinstalledaccro...

poj 1328 Radar Installation 贪心

题意:给出岛屿个数n和地雷的范围c,然后再给出n个岛屿的xy坐标,在x轴上放置地雷,求出能覆盖所有岛屿的地雷最小数    否则输出-1 思路:1、一开始,我第一个想法就是对岛屿进行排序,x从小到大,接着在x轴上放置地雷,尽可能靠右边并且能够覆盖左边的岛屿    ,接着筛选右边同时也处于该地雷之内的岛屿,再不断...

Installation of Scylla on CentOS 7

UsethesestepstoinstallScyllausingYumrepositoriesonCentOS.PrerequisitesCentOS7.2orlater,forthe64-bitx86_64architecture.Yumpackagemanagementapplicationinstalled.A...

windows hbase installation

Inthepreviouspost, Ihaveintroducedhowtoinstallhadooponwindowsbasedsystem.Now,Iwillintroducehowtoinstallhbaseonwindows.1.Preparation:beforetheinstallation,l...
代码星球 ·2020-04-05

Install hadoop on windows(non-virtual machine, such cygwin)

DownloadBeforestartingmakesureyouhavethistwosoftwaresHadoop2.7.1Java–Jdk1.7+ExtractdownloadedtarfileConfigurationStep1– Windowspathconfiguratio...

java isAssignableFrom instanceof 小结 专题

一句话总结:isAssignableFrom()方法是从类继承的角度去判断。当前类及子类都返回true。父类及接口返回falseinstanceof方法是从实例继承的角度去判断。一个类的实例 是否实现某个接口,是不是实例对应类、实例对应类的父类instanceof和isInstance 起的效果相同...
首页上一页...4142434445...下一页尾页