为您找到搜索结果:273个
mvn install 时候报GBK编码错误解决办法
在pom.xml里面<properties><!--文件拷贝时的编码--><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding><!--编译时的编码--><maven.compiler.encoding>UTF-8</maven.compiler.encoding></properties><version>0.0.3</version> 加上如上代码。...
再次Pyinstaller犯错之旅
总觉得Pyinstaller这个包挺好用,这不,今天又用上了之前写过一些脚本来优化办公和一些杂事,比如一些刷课之类得小程序,今天是要打包一个GUI程序。程序中用到了pandas、jieba、numpy、tkinter(不要问我为什么用tkinter,因为PtQt5得坑我还没有踩完!)最大得坑:由于要用到excel文件,故想把excel文件连同py文件一起打包到exe文件中,但是,事实并不想我现象得那么顺利!主要问题是无法将py代码文件和excel文件一起封装到exe中!只做到了两种:第一种:封装py文件然后把excel放在exe文件所在的文件夹下然后正常运行第二种:封装exe文件以及excel文件到一个文件夹里面【注意,不是单个exe,还包含其它很多文件,估计是一些依赖吧】有大神有解决方法吗?我现在是用着第一种了。…后来解决了》》》无奈常规打包为了文件夹。...
ubuntu18.04 install rar
sudoapt-getupdate#如果好久没有更新资源建议update一次sudoapt-getinstallrar#安装rarsudoapt-getinstallunrar#安装unrarsudoapt-getinstallp7zip-rar#安装p7zip-rarsudoapt-getinstallp7zip*#安装p7zip其它的一些支持 ...
make install 时指定安装路径
The makeinstalltargetdirisrepresentationedbyvar: DESTDIR,ifwesetthisvartothelocationwhichwewanttoinstalledto,thenwecanhavethebuildresultinstalledaccrodingly. exportDESTDIR=/INSTALL/DIRmakeinstallor makeDESTDIR=/install/directoryinstall Inthe./configurefile,wecanuse--prefixtospecifytheinstallationdirectory.seeasfollows:./configure--prefix=/pathToInstall wecanuse./configure--helpintheteminal,andthepathparameterindicatetheinstallpath. [lenmom@lenmomDesktopev...
poj 1328 Radar Installation 贪心
题意:给出岛屿个数n和地雷的范围c,然后再给出n个岛屿的xy坐标,在x轴上放置地雷,求出能覆盖所有岛屿的地雷最小数 否则输出-1 思路:1、一开始,我第一个想法就是对岛屿进行排序,x从小到大,接着在x轴上放置地雷,尽可能靠右边并且能够覆盖左边的岛屿 ,接着筛选右边同时也处于该地雷之内的岛屿,再不断找左边第一个没有地雷覆盖的岛屿继续放置最右边的地雷。。。 然后WA了。 2、网上的普遍做法,就是对每个岛屿计算能够覆盖到他的地雷范围,然后题目就变成区间的最少覆盖问题了,我就用这种 算法做了,最终还是AC了。 AC代码:#include<cstdio>#include<cmath>#include<cstring>#include<algorithm>#include<iostream>usingnamespacestd;constintMAX_N=1005;intn,_case,d;doubleu,v;boolvis[MAX_N];structnode{dou...
Installation of Scylla on CentOS 7
UsethesestepstoinstallScyllausingYumrepositoriesonCentOS.PrerequisitesCentOS7.2orlater,forthe64-bitx86_64architecture.Yumpackagemanagementapplicationinstalled.ABRTconflictwithScyllacoredumpconfiguration.RemoveitbeforeinstallingScylla: sudoyumremove-yabrtRootor sudo accesstothesystem.TheScyllapackagescreateascyllauser.WhenstartingScyllaasaservice,theservicerunsasthisuser.Makesurethatalltherelevant ports areopen.ScyllausesthefollowingportsPortDescriptionProtocol9042CQL(nat...
windows hbase installation
Inthepreviouspost, Ihaveintroducedhowtoinstallhadooponwindowsbasedsystem.Now,Iwillintroducehowtoinstallhbaseonwindows.1.Preparation:beforetheinstallation,let'stakealookatthehadoop-hbasesuppotmatrixbelow: youcanchoosetheapropriateversionont color='red'>of ont>hbasewhichissupportedbyyourhadoopsystem.BecauseIhaveinstalledhadoop2.7.1inthepreviouspost,soIchoosetoinstallhbase1.3.1whichissupportedbyhadoop2.7.1. 2.Downloadhbase1.3.1.tar.gzfromapacheont color='red'>of ont>ficialsite.3.Unzipthe hbase1.3.1.tar.gzintoyourlocalco...
Install hadoop on windows(non-virtual machine, such cygwin)
DownloadBeforestartingmakesureyouhavethistwosoftwaresHadoop2.7.1Java–Jdk1.7+ExtractdownloadedtarfileConfigurationStep1– Windowspathconfigurationset HADOOP_HOME pathinenviornmentvariableforwindowsRightclickon mycomputer>properties>advancedsystemsettings>advancetab>environmentvariables>clickonnewSethadoopbindirectorypathFindpathvariablein systemvariable>clickonedit>attheendinsert‘;(semicolon)’andpastepathuptohadoopbindirectory&n...
npm全局安装和本地安装和本地开发安装(npm install --g/--save/--save-dev)
详细说明参考:http://www.cnblogs.com/PeunZhang/p/5629329.html我个人理解:1、全局安装(npminstall-g)是为了用命令行,比如在windows下,如果用全局安装gulp时,系统变量上已经能识别gulp命令。之后就是用gulp命令。但这种说法只是片面的,如果本地安装,你进入到本地node_modules模块下能能用命令行,不过要加路径;还有一种就是环境变量上指向这个本地目录也能达到目的。2、本地安装(npminstall-save)是为了项目上能使用到这个包,会在项目文件夹上新建node_modules文件夹,然后项目上就能引用包来用。放在dependencies节点。这种说法也是片名的,实质原因是解决每个项目的多版本问题,且用全局模式的包时需要指定路径,对项目运行效果上不够快;所以这个是npm升级的结果导致的问题。3、本地开发安装(npminstall-save-dev)是在开发时要用的依赖,devDependencies下列出的模块,是我们开发时用的,比如grunt-contrib-uglify,我们用它混淆js文件,它们不会被部...
为什么npm install在安装时会多安装很多依赖包
比如我安装gulp时,会多出很多无用的包,如下图:经过查询,原来是npm升级了导致的,在npm3.0以上的版本,包的依赖不再安装在每个架包的node_modules文件夹内,而是安装在顶层的node_modules文件夹中。参考:http://blog.csdn.net/yiifaa/article/details/53507838...
Windows超级卸载工具Total Uninstaller,能完全卸载.NET Framework
https://github.com/tsasioglu/Total-Uninstaller ...
Ubuntu 16.04安装Ubuntu After Install工具实现常用软件批量安装
这个软件集成了常用且好用的软件,且只需要选择需要的软件之后自动安装好,不需要额外设置。安装:sudoadd-apt-repositoryppa:thefanclub/ubuntu-after-installsudoapt-getupdatesudoapt-getinstallubuntu-after-install使用:选择要安装的软件,然后单击立即安装开始。一旦启动安装过程是非常耐心的安装将需要一段时间才能完成。 一旦应用程序安装成功,它将被标记为绿色点,如下所示。如果安装应用程序有问题,或者如果您的Ubuntu版本不可用,则会标有红点。一旦开始安装,停止或中断安装过程不是一个好主意。默认情况下,已经安装的软件将不会被选中,但是您可以选择这些项目来将软件重新安装或升级到最新版本。标有橙色点的软件将被重新安装/升级。 参考:https://www.thefanclub.co.za/how-to/ubuntu-after-install...
Ubuntu 16.04使用sudo apt-get -f install解决依赖时的注意事项(重点)
注意:在觉得软件依赖时,一般使用sudoapt-get-finstall,但是也是非常危险的,尤其时一些软件需要删除某些依赖时,会导致原有安装的软件全部卸载。所以使用此命令时要时刻注意输出的这条信息:升级了4个软件包,新安装了3个软件包,要卸载0个软件包,有471个软件包未被升级。先确定卸载这些软件会不会对现有软件造成影响!必要时可以使用DD备份系统,再来安装这些比较难装的软件!!!...
adb push ,adb pull和adb install的区别
1、用命令行把手机上的文件拷贝到电脑上1adbpullsdcard/1222073679.png 拷贝文件夹命令,如把log文件夹拷贝到电脑当前目录1adbpullsdcard/log/拷贝文件夹到当前文件夹下的某文件夹里面,如拷贝360文件夹到当前文件夹的360里面1adbpullsdcard/360/ 360 2、顺便学一下push命令吧1adbpushaaa/contacts_app.db/sdcard/把文件contacts_app.db拷贝到手机sdcard上3,adbpush和adbinstall是apk包安装的两种方法,用法如下:1.adbpushXXX.apk/path你想推送的路径2.adbinstallXXX.apk显而易见,两者的区别是,adbpush可以自定义推送路径,adbinstall只能安装在/data/app文件下。其次,adbpush是将apk包复制到路径下面,重启后/system/app和/data/app下的apk包都会自动安装。adbinstall是将apk安装到手机里,流程是:复制APK安装包到data/app目录...
redhat 6安装python 3.7.4报错ModuleNotFoundError: No module named '_ctypes' make: *** [install] Error 1
问题描述: 今天在测试环境中,为了执行脚本,安装下python3命令,在执行makeinstall的时候报错:ModuleNotFoundError:Nomodulenamed'_ctypes'make:***[install]Error1解决:在网上找了一些方案,说要通过yum安装一个包:yuminstalllibffi-devel-y于是安装了,可是执行makeinstall还是报同样的错误。接着:makeclean然后makeinsall还是报错。再接着:以为是环境变量的问题,退出主机用户重新登录,还是报错。再接着:makeclean,重新执行configuire命令,然后make,makeinstall,发现成功。 所以:应该是在检查环境的时候,配置指定了模块的位置信息,然后在make的时候使用了,yum安装之后,重新执行configure,加载最新的模块信息,就解决了该问题。 文档创建时间:2019年8月1日17:07:22...