Hi,
Does anyone know how to test if a given Adobe component (Illustrator, or Photoshop, whatever) is installed on a system (Windows7). Probably this would be a variable stored in a registry, but what exact key would this be?
regards,
moniuch
...
I want to install python to my local direcotory:
./configure --prefix=/home/alex/local-install && make && make install
When i import sqlite3 i get the following:
ImportError: No module named _sqlite3
the reason: there is no _sqlite3.so in /home/alex/local-install/lib/python2.6/lib-dynload.
How can i force python to build bindings ...
Is there a way to use "install" for installing multiple files at once using a "wildcard" pattern (and still have "install" create the leading directory hierarchy)?
I've tried several different ways:
install -D -t /dest/path /source/path/*.py
install -D -t /dest/path/ /source/path/*.py
install -D /source/path/*.py /dest/path
install -...
Hey Guys
I've got a Problem. I am working on a Project where I am using a Programm on the PC to handle different data (which another programm = my android app creates), which i found on the plugged in sd-card of the android device.
My aim is now to use the programm on the Computer to install the Android App on the Android Device. In ot...
As the final step in building a custom python, I need to add a myproject.pth.
Currently I'm doing this in a Makefile:
install:
rm -f ../../lib/python2.6/site-packages/myproject.pth
cp myproject.pth ../../lib/python2.6/site-packages/myproject.pth
but I would like to encapsulate this in a setup.py. Unfortunt...
I am trying to install a msi from a network share remotely.
$app = [WMICLASS]"\\$pcname\ROOT\CIMV2:Win32_Product"
$app.Install($AppPath)
I am getting an err 1619. From some sources say that WMI cannot install remotely with first coping it to the local computer and running it. Some sources use this command to exactly.
That way works g...
I am in the unfortunate situation where I need to deploy and upgrade packages and config files on machines with no root access and no ability to use or install a package manager. Are there any neat solutions that allow creation of custom install packages?
I am open to custom compiles of some software in a custom location on the servers ...
I have a WinXP host with VirtualBox 3.1.2 installed. I have a VirtualBox image called "hydrogen" on which I installed WinXP and MS SQL Server 2005 Express. I have another VirtualBox image called "helium" on which I installed WinXP. I am trying to create a ODBC DSN on "helium" that connects to SQL Server on "hydrogen" but it fails.
All o...
Hi Geeks,
I recently downloaded the QT embedded widget source code and documentation. I am using QT creator for QT development. After downloading the source code and project files I dont know how to use it in QT creator. In the embedded widget package I have the installation instructions. In the install documentation its told to run the...
I am wondering about the need for an install wizard for my little Windows Forms application. No database access, just file access on a shared network drive.
I have seen times when an executable is sent in an email, copied to a desktop and used.
Other times when an 'install wizard' seems to be used to set up the application.
What dicta...
How do you create a "Browse" button in a WIX dialog.
I currently have a custom dialog box with four radio buttons (Dev, QA, Stage, and Prod), and a text field for a filename.
The install of course dies if the user enters a bad filename.
I would be happy first of all just to verify that the file they entered exists.
Secondly, I w...
I'm currently working on self bootstrapping/configuring deployments for J2EE applications. My goal is to have the deployment install Java, App Server, and app deployment every time. Unfortunately I'm running into problems automating the java install.
The java install is provided as a self-extracting binary (ie. jre-6u18-solaris-sparc.sh...
I have an application to be distributed.
Pretty much everything is self-contained within one bundle so I could just put the bundle in a DMG for the first version-- however this won't work for upgrades, so I figured I'd best work out the process ahead of time.
I've been looking at PackageMaker and it seems straightforward enough. However...
It is possible to install numpy with pip using pip install numpy.
Is there a similar possibility with scipy? (Doing pip install scipy does not work)
Update
The package scipy is now available to be installed with pip, so the question is not relevant anymore.
...
Is there any way to disable <Next> button in Inno Setup?
...
I'm attempting to build my first ruby gem and all seemed to go well until I attempted to install the gem. I'm using RVM so no need for 'sudo gem install' here.
First I attempted to do the following:
jim:~/Desktop/spectest \ [git:master]
→ rake manifest
(in /Users/jim/Desktop/spectest)
Cleaning
- pkg
rm -rf pkg
Building Manifest
Man...
I installed the Java 6 JRE on my VPS just fine, but I can't get the EE SDK installation to even run.
root@vps [/usr/java]# java -version
java version "1.6.0_18"
Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
Java HotSpot(TM) Client VM (build 16.0-b13, mixed mode)
However, when I try to run java_ee_sdk-6-unix.sh:
./ ../ java_e...
Hi all,
I was wondering if there was a solution to automatically - from my ruby source code - ask Gem to install various librairies my code my require to work?
From what i read on the internet, it seems we are obliged to either use an install script that directly runs "gem install ..." commands or do it manually or some people have pos...
where do programs save their secret license or install related information? I notice that often times when you uninstall a program, clear out appdata references, check registries to make sure there is no residue of any relevant information.
If you reinstall the trial program again, it seems to know it was installed before. I'm not looki...
Hello StackOverflow!
We deploy our application using ClickOnce, installed from a file path. For 24 versions it has been working perfectly - now, on version 25 I get the following error once the application has installed and it launches:
If I test a previous deployment on the same machine, it works.
Where can I even begin to look to...