installer

Writing 32/64-bit specific registry key at the end of the installation in Inno Setup

吃可爱长大的小学妹 提交于 2019-12-19 10:29:55
问题 I want to create an installer with Inno Setup, my first time using this tool. What I’m trying to do is wrapping an existing installer of an existing software with a more detailed self-made installer (meaning a Setup.exe inside a Setup.exe). What works for me after researching so far is asking the installer (Inno Setup *.exe) to run the included installer (actual software setup). Why do I need another installer wrapped around? Because I want to give it some extra functions. On particular thing

What are the differences between the two Python 2.7 Mac OS X disk image installers?

戏子无情 提交于 2019-12-19 09:47:00
问题 Python 2.7 has two different disk image installers for Mac OS X. My questions are: What are the differences between the two Python 2.7 disk image installers? Python 2.7 32-bit Mac OS X Installer Disk Image for Mac OS X 10.3 through 10.6 Python 2.7 PPC/i386/x86-64 Mac OS X Installer Disk Image for Mac OS X 10.5 or later If running Mac OS X 10.6 Snow Leopard without the 64-bit kernel and extensions, which is the more appropriate version of Python 2.7 to install? Why are there two different Mac

Cannot install wxPython on macOS Sierra

依然范特西╮ 提交于 2019-12-19 09:19:25
问题 The package I downloaded was wxPython3.0-osx-cocoa-py2.7.dmg from https://sourceforge.net/projects/wxpython. I clicked on the file but got the following message at the end of the failed installation: The Installer could not install the software because there was no software found to install. I followed the steps by memoselyk on Install wxPython in osx 10.11 but got the following message after calling the command in step 3 in the Terminal: pkgbuild: error: output path "wxPython3.0-osx-cocoa

python: can't open file get-pip.py error 2] no such file or directory

纵然是瞬间 提交于 2019-12-19 08:33:26
问题 When I am trying to execute this in CMD python get-pip.py I am getting this error: python: can't open file get-pip.py error 2] no such file or directory While the file store in (get-pip.py) C:\Python27\Tools\Scripts 回答1: Try to either cd into folder with script ( cd "C:\Python27\Tools\Scripts" ) or add this folder to your PATH variable. 回答2: For Linux/Mac, you can go for curl 'https://bootstrap.pypa.io/get-pip.py' > get-pip.py && sudo python get-pip.py Fetching installer Executing file with

python: can't open file get-pip.py error 2] no such file or directory

旧城冷巷雨未停 提交于 2019-12-19 08:33:13
问题 When I am trying to execute this in CMD python get-pip.py I am getting this error: python: can't open file get-pip.py error 2] no such file or directory While the file store in (get-pip.py) C:\Python27\Tools\Scripts 回答1: Try to either cd into folder with script ( cd "C:\Python27\Tools\Scripts" ) or add this folder to your PATH variable. 回答2: For Linux/Mac, you can go for curl 'https://bootstrap.pypa.io/get-pip.py' > get-pip.py && sudo python get-pip.py Fetching installer Executing file with

Multiplatform Installer

瘦欲@ 提交于 2019-12-19 08:00:16
问题 I am looking for a recommendation on an installer program. The installer needs to support mulitple OS's - Solaris, Linux and Windows. I have three build machines each running one of the OS's. Currently using the same code base - JAVA and C/C++ for all three. 回答1: IzPack is a an open source software installer generator. All you need is a JRE on the target platform. 回答2: InstallAnywhere seems to be the dominant player. 回答3: Maybe is my personal opinion but I think that the installer is probably

Multiplatform Installer

蓝咒 提交于 2019-12-19 07:59:49
问题 I am looking for a recommendation on an installer program. The installer needs to support mulitple OS's - Solaris, Linux and Windows. I have three build machines each running one of the OS's. Currently using the same code base - JAVA and C/C++ for all three. 回答1: IzPack is a an open source software installer generator. All you need is a JRE on the target platform. 回答2: InstallAnywhere seems to be the dominant player. 回答3: Maybe is my personal opinion but I think that the installer is probably

How do we create an installer than doesn't require administrator permissions?

烂漫一生 提交于 2019-12-19 06:46:24
问题 When creating a setup/MSI with Visual Studio is it possible to make a setup for a simple application that doesn't require administrator permissions to install? If its not possible under Windows XP is it possible under Vista? For example a simple image manipulation application that allows you to paste photos on top of backgrounds. I believe installing to the Program Files folder requires administrator permissions? Can we install in the \AppData folder instead? The objective is to create an

Is there a shared folder in Windows to which non-elevated users have write access?

戏子无情 提交于 2019-12-19 06:30:35
问题 I know that commonappdata (All Users) can hold system-wide application settings, but under Vista/7 non-elevated users can't write to that directory. Is there a folder which is shared among users and any non-admin user can write to it? Here is why I need this: My app is installed in PF directory by an Inno Setup installer with elevated rights. Then when the actual non-admin user runs the program, it copies its settings to the user's AppData directory using another non-elevated Inno Setup

Inno Setup - replace default next/back/cancel buttons

北战南征 提交于 2019-12-19 04:14:56
问题 I need a way to add my own buttons to wizard pages/remove existing ones in Inno Setup. Is that possible? 回答1: Yes, it is possible: [code] procedure AboutButtonOnClick(Sender: TObject); begin MsgBox('This is a demo of how to create a button!', mbInformation, mb_Ok); end; procedure CreateAboutButton(ParentForm: TSetupForm; CancelButton: TNewButton); var AboutButton: TNewButton; begin AboutButton := TNewButton.Create(ParentForm); AboutButton.Left := ParentForm.ClientWidth - CancelButton.Left -