0
votes
3answers
46 views

Setting up Eclipse with JRE Path

I have downloaded and extracted Eclipse. I have Eclipse in the following directory: C:\Applications\eclipse. When I try and run the executable, I get the following message: I currently have the ...
-2
votes
1answer
66 views

Error :- php is not recognised as an internal or external command [closed]

So this is my path I have: C:\wamp\bin\php\php5.4.3 And my php.exe file is in that folder... I have tried to put: C:\wamp\bin\php\php5.4.3; C:\wamp\bin\php\php5.4.3\php.exe C:\wamp\bin\php ...
5
votes
1answer
476 views

How to find the path of the local git repository when I am possibly in a subdirectory

I'm looking for something like git list-path printing the path of the associated repository (the .git directory). A bit of background: I have set up git version control on quite a few of my ...
4
votes
2answers
163 views

How can I export the calling environment correctly into a subshell in Perl?

I am trying to use a Perl script to add certain directories in a tool(wpj) we have. The direct command would look something like $ wpj add path/to/desired/library makefile.wpj I want to do a script ...
2
votes
2answers
808 views

Environment.SpecialFolder.CommonDocuments

When I execute this statement: string folderPath = Environment.GetFolderPath(Environment.SpecialFolder.CommonDocuments); folderPath is set to C:\ProgramData. When I execute this statement in ...
0
votes
2answers
68 views

Calling a path in java method

I have a small problem calling a path(that has the python file, that I need to run) in the following code: Process p = Runtime.getRuntime().exec(callAndArgs,env, new ...
3
votes
2answers
201 views

Finding out the absolute path of the PHP interpreter running the current script

In the CLI mode, is it safe and portable to rely on getenv('_') for finding out which php interpreter executable is running the current php script? I don't see it documented anywhere on php.net
4
votes
3answers
3k views

Windows 7 environment variable not working in path

I am trying to set up some path using environment variable. I added an environment variable "MAVEN_HOME" with the value "C:\maven". Then in the path I added "%MAVEN_HOME%\bin;...rest". When I type ...
2
votes
1answer
121 views

How do I change the execution PATH of a process programatically?

I am working on a mini-shell, and am trying to set the execution path dynamically. I am using setvar() to set the PATH and when I check it with getvar() it reads the new PATH. Here are the two things ...
0
votes
1answer
96 views

Add values to the environment without erasing the previous values in C [closed]

I have this function which adds variable and values to the environment and if there is already a variable with some values in the environment adds extra values to the variable. For example if HOME ...
0
votes
2answers
820 views

Can't set Python environment PATH variable?

So for some reason, my computer refuses to see the environment PATH variable. In the path variable, I have: C:\Python32; listed, along with all of the other programs, but it doesn't work if I type, ...
0
votes
3answers
459 views

Finding the path to a Perl module upon loading

I am using a legacy Perl application which loads a library, call it "blah". I need to know where does "blah" resides in my file system. I am not familiar at all with Perl, and I wonder what is the ...
10
votes
4answers
8k views

python subprocess Popen environment PATH?

i'm having a bit of confusion over where/how subprocess searches for the executable when using Popen(). i have it working fine if given absolute paths to the child process, but i want to be able to ...
0
votes
2answers
1k views

restore PATH under Mac OS X

Hi guys I tried to add new directory to the PATH, but instead appending I overwrote it. Is there any way to restore those default paths?
1
vote
2answers
1k views

Windows 7 PATH environment variable expansion [closed]

In Windows 7 I set the PATH environment variable thus: ...
0
votes
2answers
1k views

Setting environment variables (specifically the PYTHON PATH) on a mac

Because it was such a mission to get this simple bit of info I've decided to post it for others: In terminal execute: mkdir ~/.MacOSX In terminal execute: touch ~/.MacOSX/environment.plist Browse ...
4
votes
3answers
2k views

ResolvePath for VB6 - resolve environment variables

I am looking for a function in VB6 (or some WinAPI) that might be able to satisfy this requirement: Take an input path string that includes environment variables, and output that path with environment ...
1
vote
4answers
859 views

DLL Search Path only partially searched

I just set up a new faster computer to be my development station. I'm having a problem with a DLL not begin found when I run an application I'm working on using Delphi 6 Pro, but I don't think the ...
9
votes
2answers
1k views

Can anyone give me a example of modifying windows environment system variables in WIX?

I still don't know how to add the installdir into the PATH of the Windows System Variables after I went through the WIX tutorial. I tried to use Environment Id='UpdatePath' Action='create' ...
5
votes
3answers
2k views

C#/.NET app doesn't recognize Environment Var Change (PATH)

In my C# app, I am programmatically installing an Oracle client if one is not present, which requires adding a dir to the PATH system environment variable. This all works fine, but it doesn't take ...
1
vote
3answers
2k views

How to specify rubygems path in environment-less Ruby script?

I've written a data collection script for Cacti in Ruby and it runs fine from the command line but Cacti runs the script via "env -i" which strips the environment so Ruby can't find the rubygems ...
6
votes
4answers
8k views

How do I properly split a PATH variable in PHP?

I want to split $path = getenv('PATH'); into its components. How do I determine the separator char in an os-dependent fashion?
31
votes
6answers
26k views

How do I get the path of a process in Unix / Linux

In Windows environment there is an API to obtain the path which is running a process. Is there something similar in Unix / Linux? Or is there some other way to do that in these environments?
4
votes
2answers
1k views

How to set the $PATH as used by applications in os x

I'm using ant to build my project, and use the 'svnversion' executable to insert a version id into my sources for easy tracking of versions. Running this ant file from the command line works, I've ...
7
votes
6answers
37k views

fatal error C1083: Cannot open include file: 'Windows.h': and scons

Today is officially my first day with C++ :P I've downloaded Visual C++ 2005 Express Edition and Microsoft Platform SDK for Windows Server 2003 SP1, because I want to get my hands on the open source ...
4
votes
5answers
1k views

Installer changes PATH variable, changes don't show up in Command Shell

I added a custom install action to my installer to add one of my installation directories to the System PATH environment variable. After I run the installer, the PATH variable reflects the changes ...