install

How to install VB6 SP6 on Windows 8.1 x64?

与世无争的帅哥 提交于 2020-01-12 04:43:11
问题 Need to support some old projects directly in the newest OS, not in a virtual machine. I've installed VB6 from the VS6 disk #1 successfully, but I cannot install the SP6 for this development environment. When I launch it, an information window that informs me about the installation progress appears for some milliseconds, but the required files (ADVPACK.DLL, msvbvm60.dll, ...) aren't updated in the system folder. The About dialog in VB6 IDE also proves that - I do not see "SP6" anywhere in it.

configure/make/make install的作用(MarkZZ)

末鹿安然 提交于 2020-01-12 03:49:27
这些都是典型的使用GNU的AUTOCONF和AUTOMAKE产生的程序的安装步骤。 ./configure 是用来检测你的安装平台的目标特征的。比如它会检测你是不是有CC或GCC,并不是需要CC或GCC,它是个shell脚本。 make 是用来编译的,它从Makefile中读取指令,然后编译。 make install 是用来安装的,它也从Makefile中读取指令,安装到指定的位置。 AUTOMAKE和AUTOCONF 是非常有用的用来发布C程序的东西。如果你也写程序想使用AUTOMAKE和AUTOCONF,可以参考CNGNU.ORG上的相关文章。 --End-- 1、configure ,这一步一般用来生成 Makefile,为下一步的编译做准备,你可以通过在 configure 后加上参数来对安装进行控制,比如 代码: ./configure --prefix=/usr 上面的意思是将该软件安装在 /usr 下面,执行文件就会安装在 /usr/bin (而不是默认的 /usr/local/bin),资源文件就会安装在 /usr/share(而不是默认的/usr/local/share)。同时一些软件的配置文件你可以通过指定 --sys-config= 参数进行设定。有一些软件还可以加上 --with、--enable、--without、--disable

BT面板的安装以及mongodb的简单认知

主宰稳场 提交于 2020-01-11 18:46:31
BT面板 切换用户 进入系统前 通过切换登录用户实现 进入系统后 通过输入切换用户名 su 切换用户时,输入密码是看不见的 wget [选项]… [URL]… yum install - y wget && wget - O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh ubuntu/deepin/debian wget -O install.sh http://download.bt.cn/install-ubuntu_6.0.sh && sudo bash install.sh 清屏 linux(clear)win(cls) 面板升级 curl http://download.bt.cn/install/update6.sh | bash 重新启动面板 bt restart 如果不能实现双机互拖文件的,请执行:apt-get install open-vm-tools-desktop fuse 如何关掉防火墙: systemctl stop firewalld.service 查看面板入口: /etc/init.d/bt default 存储容器-分布式存储-mongodb 切换用户到su下面安装,需要root权限 mongodb是一个基于分布式文件存储的数据库

Centos7笔记之Docker-compose安装的几种方法

耗尽温柔 提交于 2020-01-11 18:38:13
一、目标 centos7.6下安装Docker-compose安装 二、平台 [root@hiibm ~]# uname -r 3.10.0-957.el7.x86_64 [root@hiibm ~]# cat /etc/redhat-release CentOS Linux release 7.6.1810 (Core) [root@hiibm ~]# docker-compose version docker-compose version 1.23.2, build 1110ad01 docker-py version: 3.6.0 CPython version: 3.6.7 OpenSSL version: OpenSSL 1.1.0f 25 May 2017 三、解析 推荐使用第三种写好的懒人版 四、方法1:在线安装docker-compose #下载docker-compose curl -L "https://github.com/docker/compose/releases/download/1.23.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose #给docker-compose赋权限 chmod +x /usr/local/bin/docker

Can't install pdfminer.six on Windows 10

徘徊边缘 提交于 2020-01-11 10:21:47
问题 On my cmd window, I typed pip install pdfminer.six and it gives me these errors. Microsoft Windows [Version 10.0.15063] (c) 2017 Microsoft Corporation. All rights reserved. C:\Users\Eric Kim>pip install pdfminer.six Collecting pdfminer.six Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x04435730>: Failed

Can't install pdfminer.six on Windows 10

烈酒焚心 提交于 2020-01-11 10:21:43
问题 On my cmd window, I typed pip install pdfminer.six and it gives me these errors. Microsoft Windows [Version 10.0.15063] (c) 2017 Microsoft Corporation. All rights reserved. C:\Users\Eric Kim>pip install pdfminer.six Collecting pdfminer.six Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ProxyError('Cannot connect to proxy.', NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x04435730>: Failed

NPM概述及使用简介

旧时模样 提交于 2020-01-11 09:25:54
什么是 NPM npm之于Node,就像pip之于Python,gem之于Ruby,composer之于PHP。 npm是Node官方提供的包管理工具,他已经成了Node包的标准发布平台,用于Node包的发布、传播、依赖控制。npm提供了命令行工具,使你可以方便地下载、安装、升级、删除包,也可以让你作为开发者发布并维护包。 为什么要使用 NPM npm是随同Node一起安装的包管理工具,能解决Node代码部署上的很多问题,常见的场景有以下几种: 允许用户从npm服务器下载别人编写的第三方包到本地使用。 允许用户从npm服务器下载并安装别人编写的命令行程序到本地使用。 允许用户将自己编写的包或命令行程序上传到npm服务器供别人使用。 npm的背后,是基于CouchDB的一个数据库,详细记录了每个包的信息,包括作者、版本、依赖、授权信息等。它的一个很重要的作用就是:将开发者从繁琐的包管理工作(版本、依赖等)中解放出来,更加专注于功能的开发。 如何使用 NPM npm的安装 npm不需要单独安装。在安装Node的时候,会连带一起安装npm。但是,Node附带的npm可能不是最新版本,最后用下面的命令, 更新到最新版本: $ sudo npm install npm@latest -g Window 系统更新命令: npm install npm -g 也就是使用npm安装自己

linux学习笔记

天涯浪子 提交于 2020-01-11 06:48:46
1.linux中的命令 ifconfig //查看linux的ip地址 ls -l 可以简写为 ll //查看文件带详细信息 ls //查看文件不带详细信息 cd 文件夹名 //进入目录,按tab键可不全路径 cd .. //退回上一级目录 pwd //查看当前目录 cd - //返回上一次目录 mkdir aaa //创建aaa目录 rmdir aaa //谁删除aaa目录,只能删除空目录,目录中有文件夹或者文件时不能删除 mkdir --help //查看帮助 mkdir -p aaa/bbb //创建多级目录 cat install.log //查看文件install.log的所有内容 more install.log //带分页的查看install.log文件内容,按enter键多展示一行,按q或者ctrl+c退出,按空格翻下一屏 less install.log //带分页查看install.log文件内容,跟more一样只是多了一个上下键可以翻页 tail -10 install.log //只查看文件的最后10行 tail -f install.log //动态展示install.log的内容,即当install.log的内容变化时可以动态查看 cp install.log aaa/ //把文件install.log复制到目录aaa中,必须是已存在的目录 cp

Library not loaded error (libidn.11.dylib) when trying to install Homebrew

蓝咒 提交于 2020-01-11 06:32:05
问题 Trying to install Homebrew on Lion. When I do: /usr/bin/ruby -e "$(curl -fsSL https://raw.github.com/gist/323731)" I get this error: dyld: Library not loaded: /opt/local/lib/libidn.11.dylib Referenced from: /usr/local/bin/curl Reason: image not found I had MacPorts installed previously but uninstalled it and completely removed /opt/local I also removed /opt/local from my PATH Any idea why this error is happening? 回答1: You built and installed curl into /usr/local/bin , but it linked against

FATAL ERROR: please install the following Perl modules before executing

五迷三道 提交于 2020-01-11 05:56:39
安装mysql5.6版本时,初始化数据库出现以下报错: FATAL ERROR: please install the following Perl modules before executing /usr/local/mysql/scripts/mysql_install_db: Data::Dumper 解决方法: 安装autoconf库 命令:yum install autoconf -y 来源: CSDN 作者: 时光慢旅 链接: https://blog.csdn.net/weixin_42953006/article/details/103897182