0
votes
1answer
13 views
Best way to configure a run script?
I am tasked with supportting a run script that uses environment variables to determine which tools to use, which directories to grab source files from, etc. This does not seem like …
1
vote
3answers
99 views
How do I set an environment variable in Perl?
How do I set an environment variable in Perl?
I want to set $HOME to a different directory than the default.
0
votes
2answers
24 views
Within a windows batch file, how do I set an environment variable with the hexadecimal representation of a decimal number?
When using the Windows set /p and set /a commands to accept a hexadecimal value from the command line and convert it to decimal. What I need is to be able to take a decimal value a …
0
votes
2answers
31 views
suggestions for using PATH to executables with version control (Mercurial)
So I'm pretty new to version control but I'm trying to use Mercurial on my Mac to keep a large Python data analysis program organized. I typically clone my main repository, tweak …
0
votes
5answers
50 views
Setting Enviroment Variables Dynamically on Linux
I am currently looking for a way to set enviroment variables in Linux via a simple shell script. Within the script I am currently using the 'export' command, however this only has …
2
votes
2answers
100 views
Python: Platform independent way to modify PATH environment variable
Is there a way to modify the PATH environment variable in a platform independent way using python?
Something similar to os.path.join()?
0
votes
3answers
50 views
Can’t Run Netbeans after changing Java to 1.6 on mac
Hello guys
i know i've posting a lot about mac lately and setting up my environment to develop on java 1.6.
after trying to set my etc/launch.conf like so
setenv JAVA_VERSION …
0
votes
1answer
55 views
PYTHONPATH environment variable…how do I make every subdirectory afterwards?
I currently do this:
PYTHONPATH=/home/$USER:/home/$USER/respository:/home/$USER/repository/python-stuff
How can I make it so that the PYTHONPATH can include everything subdirect …
0
votes
1answer
43 views
I want to create this environment variable for everyone, but it does not load during startup? (linux)
I put this at the top, using "sudo vi /etc/profile":
PYTHONPATH=/home/myuser:/home/myotheruser
When I use putty and log in under my username, the python path does not work!
I ty …
0
votes
2answers
47 views
Getting $USER inside shell script when running with sudo ?
Hi,
How do I get the correct $USER if I run a shell script with sudo ?
I run them as postinstall scripts in a Mac install package, where they are being sudo-ed automatically, bu …
0
votes
2answers
122 views
Using Sed to expand environment variables inside files
I'd like to use Sed to expand variables inside a file.
Suppose I exported a variable VARIABLE=something, and have a "test" file with the following:
I'd like to expand this: "${VA …
2
votes
2answers
71 views
How do I find javac.exe programmatically?
I'm calling javac from C# code. Originally I found its location only as follows:
protected static string JavaHome
{
get
{
return Environment.GetEnvironmentVariable …
0
votes
2answers
118 views
Load dll’s from Environment Variable Path from a service
We install Matlab Runtime on a machine, then we restart a .net windows service that invokes methods from the Matlab Runtime.
The problem is that we receive TypeInitializationExcept …
0
votes
1answer
24 views
How do I setup environment variable INCLUDE for Visual Studio 2005?
Is there a script that I can run that will setup my %INCLUDE% environment variable?
I'm running PC-lint and it can't find my include header files. I went through the documentation …
0
votes
0answers
29 views
setven in launchd.conf on mac
Hello good people
This is my first real development with the mac os(OS X 10.5.8).I got a macbookpro from work and i'm still setting up the right development environment.I've opted …
