install

How to prevent the second "gem install XXX" from reinstalling?

gem install XXX seems to run the installation process even if the package is already installed. i.e. if I do $ gem install chef ... $ gem list | grep chef chef (0.9.8) $ gem install chef ... the second gem install chef seems to install chef again! How can I get this to result in a noop and the message "chef is already installed", or...

Adding a custom installation directory option to Autoconf-generated configure scripts

configure scripts always include something like the following in the help message: ... By default, `make install' will install all the files in `/usr/local/bin', `/usr/local/lib' etc. You can specify an installation prefix other than `/usr/local' using `--prefix', for instance `--prefix=$HOME'. For better control, use the options bel...

Can't install Android ADT in Eclipse

Help! With Windows 7, Galileo, Eclipse 3.5.2: every time I click Finish when installing ADT I get the error "Install has encountered a problem - an error occurred while uninstalling". Details: String index out of range:0 eclipse.buildId=unknown java.version=1.6.0_21 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARC...

Installing Ruby on Rails on Windows 7 - quick and easy

Since I had so many issues installing RoR on my laptop with Windows 7, I thought I would share my steps with you. Many people tell you to use InstantRails. I did that one too, but the option below worked best for me. Download and install Ruby 1.8.7 http://rubyforge.org/frs/download.php/71492/rubyinstaller-1.8.7-p299.exe Download the l...

Installing OpenGL for Qt

Hi I just have installed Qt 4 on windows 7. I am now in a bit of a confusion How do I get to install OpenGL so that it works with QT? Is there an installer for OpenGL? Qt docs. say it has support for OpenGL, but when I include QTOpenGL and build, the compiler issues an error of "No such file or directory" Thanks for the reply in advan...

OpenCV install error: cvboost.cpp:1439: error: expected ';' before cvReleaseMat

Opencv Error: I got the following error while installing OpenCV on Lucid. 81% .... "cvboost.cpp:1439: error: expected ';' before cvReleaseMat" SOLUTION: edit cvboost.cpp and add semicolon on line:1438 ...

install(TARGETS ...) and add_subdirectory

Is it possible to use install(TARGETS ...) with targets that are defined in directories added with add_subdirectory? My use case is, that I want to build e.gg an rpm for gtest. the gtest project happens to have a CMakeLists.txt without any install statements. I want to build the package without adding those statements to the CMakeLists....

Error when trying to build anything after installing Xcode 3.2.3

I just recently installed the latest verson of Xcode as well as the ios 4.0.2 sdk with the disk image downloaded off of the apple developer site named xcode_3.2.3_andios_4.0.2.dmg. My past version of xcode came off of the snow leopard install disk. After the install I get an error when I try to build anything including a new project that...

Internal Server Error when install Wordpress

This is an error I got http://macslab.com/events/wp-admin/install.php I followed instruction here to empty .htaccess file http://www.pupuweb.com/blog/fix-wordpress-internal-server-error/ I also set 755 to all files and folders I am sure the database connection works because if I changed it, it would say database connection error. So t...

Set property value from user selection in wix

I have a window with 3 radiobuttons like this(removed all non interesting props): <Control Id="Back" Type="PushButton" Text="!(loc.WixUIBack)"> <Publish Event="NewDialog" Value="InstallDirDlg">1</Publish> </Control> <Control Id="Cancel" Type="PushButton" Text="!(loc.WixUICancel)"> <Publish Event="SpawnDialog" Value="CancelDlg">1</...

ImportError: No module named django.core.handlers.wsgi in install django mod_wsgi config on apache

Hi, I tried to install django on my apache on mod_wsgi , I have this error : ImportError: No module named django.core.handlers.wsgi, I v read, may be it's some user problem... On console ssh, with root access no problem to access django.core.handlers.wsgi , but when apache ask to access it doesn't work... i need help Thx My django....

Easiest way to get Compass/Sass running on OSX

I first had to follow the instructions here to make sure that I had Ruby and Gems installed. Then I installed compass using Gems. Then I tried to run compass and had some errors... "Warning: Unable to load CarbonCore. FSEvents will be unavailable compass" I found a solution here, but it required me to install RVM via gems first...

MANIFEST.in ignored on "python setup.py install" - no data files installed?

Here's my stripped-down setup.py script with non-code stuff removed: #!/usr/bin/env python from distutils.core import setup from whyteboard.misc import meta setup( name = 'Whyteboard', version = meta.version, packages = ['whyteboard', 'whyteboard.gui', 'whyteboard.lib', 'whyteboard.lib.pubsub', 'whyteboar...

Symfony database setup: command "symfony" in ms-dos doesn't work

Hello there, I am trying to do this: c:\> php symfony configure:database "mysql:host=localhost;dbname=jobeet" root mYsEcret This doesnt work for me because it says Could not open input file I thought I needed to add symfony-file located in C:\dev\sfprojects\jobeet\lib\vendor\symfony\data\bin\ to PATH, but this didn't do the trick....

Cannot install .apk on phone

Hi I've just knocked together my first app, have released and signed it and transferred to my phone, but cannot get it to install on my phone - after going through the screen saying 'Do you want to install this application' and clicking install, I just get a message saying 'Application not installed' with no further explanation. I had c...

Packaging a Mac application for manual install even though it has frameworks?

I'm currently building my first Mac application and I'm a little confused by the delivery process. I've quickly read through the Software Delivery Guide but it seems to imply that if I have several components in my app, I should use a managed install. My application is very simple but it does rely on VVOpenSource frameworks, so when I bu...

ASP.NET Membership installation wizard

Hi. How install asp.net membership provider from C# code ? input is only connection string. Thats all. Thank you ...

SQL Server Express 2008 R2 Installation error at Windows 7

Hello, I created install script that will install SQL Server 2008 R2 on windows XP SP3, windows vista and windows 7. One of the command that i used in the installation is for silent installation of SQL Server 2008 R2. When i install it on windows XP everything works just fine but when i try to install it on Windows 7 i get an error. ...

Is there a way to package a python extension written in C into a binary so I don't have to python-install it?

I wrote a Python extension in C, and my python program uses that extension. In order for it to work, I would have to install the extension on the user's system before my program can run. Is there a way to bypass that installation step and somehow just have the extension in my python package? The only compiled part obviously is the extens...

[Inno Setup] copy file to multiple destinations defined by user.

Hello, During installation proces user has ability to install number of some service instances (Service1- ServiceN). All th difference between this services - content of configuration files(actually there is only one executable in /Product_Root/run wich is called with different command-line params).Configuration files situated in Produc...