解决sublime package control 出现There are no packages available for installation

昨天在安装了一下SublimeText3,在安装插件的过程中出现了一些问题,现在记录一下,也给遇到同样问题的朋友一些帮助。在安装插件的时候,需要先安装一下PackageControl。安装PackageControl安装PackageControl有两种方式,第一种方式为:在控制台中输入安装命令。调出控制的方式为:Ctrl+`。SublimeText2和SublimeText3的命令如下:SublimeText2importurllib2,os,hashlib;h='df21e130d211cfc94d9b0905775a7c0f'+'1e3d39e33b79698005270310898eea76';pf='PackageControl.sublime-package';ipp=sublime.installed_packages_path();os.makedirs(ipp)ifnotos.path.exists(ipp)elseNone;urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler()));by=...

webpack遇见的坑:Please install 'webpack-cli' in addition to webpack itself to use the CLI.

webpack-cli没被找到:在webpack4.0之后,需要全局安装webpack-cli,在全局安装webpack之后,cnpmi webpack-cli-g在局部使用webpack时无需再安装了 ...

npm install 失败

配置环境时,npminstall一直遇到同一个错误:检查了下log,发现npm在获取patternfly依赖包元数据的时候总是会遭遇不可预料的文件末端1486sillyfetchPackageMetaDataerrorforpatternfly@>=3.27.2unexpectedendoffile1487sillypacotegitmanifestforcomponents-jqueryui@github:components/jqueryui#1.12.1fetchedin825ms1488sillyresolveWithNewModulecomponents-jqueryui@1.12.1checkinginstallablestatus1489verbosestackError:unexpectedendoffile1489verbosestackatGunzip.zlibOnError(zlib.js:152:15)稍微搜索了一下相关问题,提到可能是网络不稳定的原因,开着VPN重试,还是不行。看到一种思路是更换国内镜像,试了一下,搞定了。npmconfigsetregi...
代码星球 代码星球·2020-04-08

Graphviz install the Windows for Scyther

1、在Pycharm中使用Scyther工具的时候需要导入graphviz   直接在Interpreter上安装的售后会报错,如果在IDE上无法支架安装的库可以试图在控制台上安装,控制台上无法安装的库直接下载后复制到对应python的库文件中加载。根据提示在控制台下输入 pipinstall--user graphvize==0.11.1 这样安装成功之后,在pycharm中可以看到库中的graphvize,因为 Scyther工具基于python2.7的版本 所以切换到3.0以下的版本安装插件 安装完成之后执行程序报错如下:根据提示我们继续安装插件 wxPython  在安装的时候一定要指定版本  如果安装不成功 在install之后机上 --user。另外有时候在下载的时候出现地址不对的情况,可以在Avaiablepackage中替换轮子的下载地址。  安装成功之后不管是在命令行下面启动scyther还...

kali linux Desktop Environemt types and kali linux install virualbox

1、weknowthekalilinuxdesktopenvironmetcanalsobecostomized,DesktopenvironmetcanuseGNOME(default),KDE(KDesktopEnvironmet),andLXDE(Loghtweightx11DesktopEnvironmet) wesetcommandunderwindows:nbtstat-A[ipaddress]    .wewillgettheNetBIOSremoteMacineNameTables  asweseeinthepicture,ifyoudohaveahexcode<20>thenyoumayhavecauseforconcernnowiwillexplainifshowcodeof<20>meansyouhavefileandprintersharingturnedon.,aditionalwecnausethecommand:netsharetoshowthesharingfi...

installutil 安装windows service

1:路径:C:WindowsMicrosoft.NETFrameworkv4.0.303192:执行指令:C:WindowsMicrosoft.NETFrameworkv4.0.30319>installutilE:MonitorServiceMonitorServiceMonitorServiceinReleaseMonitorService.exe安装成功后在服务里看到: ...

How to Install Linux, Apache, MySQL, PHP (LAMP) stack on CentOS 6 【Reliable】

AboutLAMPLAMPstackisagroupofopensourcesoftwareusedtogetwebserversupandrunning.TheacronymstandsforLinux,Apache,MySQL,andPHP.SincetheserverisalreadyrunningCentOS,thelinuxpartistakencareof.Hereishowtoinstalltherest.Thestepsinthistutorialrequiretheuseronthevirtualprivateservertohaverootprivileges.YoucanseehowtosetthatupintheInitialServerSetupTutorialinsteps3and4.Apacheisafreeopensourcesoftwarewhichrunsover50%oftheworld’swebservers.Toinstallapache,openterminalandtypeinthiscommand:sudoyuminstall...

ubuntu install mysql server method

    recentlytrytoinstallmysqlinmycomputersothat Icanpractisesomesqlstatementonsever.Buttherearesomeproblemwhileinstallmysqlpackageinmyubuntusystem.Ihavatriedlotsofwaystomoveon.atlast.Ifindthereisabestwaytoinstallmysqlinmycomputer,soIwanttosharewithotherfriendslikeyouwhofindssolutionsforsuchprogramandhopemysuggetionwillgivesomehelp,evenless..First weshouldkeepoursystemcleartoinstallmysqlbefore(beacuseIhavainstalledsomeothertypesoncompters,andtheremightbesomefileswhic...

sublime3 安装 Package Control 报错 “There Are No Packages Available For Installation”

编辑Preferences>PackageSettings>PackageControl>Settings-User文件码上{"channels":["https://raw.githubusercontent.com/7t7t/channel_v3.json/master/channel_v3.json"]}附最新channel_v3.js下载地址https://github.com/search?o=desc&q=channel_v3.json&s=updated&type=Repositories来源:https://www.jianshu.com/p/fb4dd1b302f0...

npm中package-lock.json的作用:npm install安装时使用

简单理解:XYZ的格式对应为:主版本号.次版本号.修订号,版本号递增规则如下:主版本号:当你做了不兼容的API修改,次版本号:当你做了向下兼容的功能性新增,修订号:当你做了向下兼容的问题修正。   假设我们创建了一个新项目,它将使用express。在运行npminit之后,在撰写本项目时,最新的express版本是4.15.4。(默认情况下,npm将安装最新版本)因此在package.json中,"express":"^4.15.4"被添加作为依赖项。假设明天,express的维护者会发布一个bug修复,所以最新版本变成了4.15.5。然后,如果有人想要为我的项目做贡献,他们会克隆它,然后运行npminstall,因为4.15.5是一个更高版本的主要版本,这是为他们安装的。我们都有express依赖,但我们有两个不同的版本。理论上,它们应该还是兼容的,但是也许这个bug会影响我们正在使用的功能,而我们的应用程序在使用Express版本4.15.4与4.15.5进行比较时会产生不同的结果.  而package-lock.json的作用就是用来保证我们的应用程序依赖之间的关系是一...

ImportError: No module named _curses;Color support is disabled, python-curses is not installed.解决办法

 linux系统默认安装了python2.6,但是发现python2.7importcurses时提示找不到_curses错误。 用pip(python2.7)安装了curses-2048 (sudopipinstall curses-2048) 仍然继续提示 importcursesFile“/usr/local/lib/python2.7/curses/__init__.py”,line15,in<module>from_cursesimport*ImportError:Nomodulenamed_curses到底是什么原因呢?明明安装了curses呢?答案:仔细分析,你应该会发现第一次没有安装curses模块和安装后,其实提示的错误是不完全一样的。 正常没有安装curses时,会提示找不到模块curses,而这一次提示的是nomodulenamed_curses,而且提示你在curses/__init__.py里第几行的错误。实际上已经load了curses,只是再加载的中间...

【PHP】Composer使用简介,composer install 和 update 区别

1、composer是php的依赖包管理工具2、符合PSR-0/1/2/3/4规范3、composer安装推荐使用国内镜像4、composerrequire/install/update区别:然而,对于如何『安装他们』,新手可能并不清楚。网上的答案有的说composerinstall,有的说composerupdate,而这两者似乎都能成功把依赖下载下来并安装好,那么他们究竟有何区别呢?首先要搞清楚的一件事情是,所有的依赖都定义在composer.json中,手册中给出了一些基本用法和例子。你可能已经注意到,在指定版本号的时候,我们并不一定要指明一个精确的版本。那么就有可能发生这么一个情况,对于同一份composer.json,我们在不同时刻拉取到的依赖文件可能不同(因为composer会在满足条件的情况下去拉取最新的那份依赖),从而导致一些异常情况。composerupdate和composerinstall正是为了解决这个问题而出现的。当你执行composerupdate的时候,composer会去读取composer.json中指定的依赖,去分析他们,并且去拉取符合条件最新版本的...

【laravel54】composer install与composer update的区别

1、基础概念:我们需要明白laravel项目里面有2个配置文件,composer.json和composer.lock文件,前者是下载的依赖包配置文件,后者是锁定的包版本信息。使用之前,需要cd进入项目根目录:执行》》》2、composerinstall:会优先调用下载composer.lock文件里面的类库版本,与线上库类一致;默认下载至vendor目录。(建议)   composerupdate:会直接下载composer.json里面依赖包最新版本,并同步更新composer.lock文件版本。 ...

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

题目大意:给你n个点然后让你求出去掉一条边之后所形成的最小生成树。比較基础的次小生成树吧。。。先prime一遍求出最小生成树。在dfs求出次小生成树。ProblemDescription  NJUSTcarriesonthetraditionofHaJunGong.NJUST,whokeepsupthe”people-oriented,harmoniousdevelopment”oftheeducationalphilosophyanddevelopsthe”unity,dedication,truth-seeking,innovation”schoolmotto,hasnowbecomeanengineering-based,multidisciplinaryuniversity.  Asweallknow,NanjingisoneofthefourhottestcitiesinChina.StudentsinNJUSTfindithardtofallasleepduringhotsummereveryyear.Theywillnever,ho...

Cannot use ImageField because Pillow is not installed

在django的models.py在有例如以下代码。 运行python manage.py runserver后报错:class Article(models.Model):    title = models.CharField(max_length=200)    content = models.TextField()    url = models.URLField()    portal = models.ImageField()    author = models.ForeignKey(Author) ERRORS:blog.Article.portal: (fields.E210) Cannot ...
首页上一页...1415161718...下一页尾页