Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install scons on Mac OS X

Tags:

macos

scons

Can you please tell me how can I install scons on MacOSX?

I don't see a mac specified download from http://www.scons.org/

Thank you.

like image 967
n179911 Avatar asked Jul 30 '09 16:07

n179911


People also ask

Where is SCons installed?

If your Linux distribution does not already have a specific SCons RPM file, you can download and install from the generic RPM provided by the SCons project. This will install the SCons script(s) in /usr/bin, and the SCons library modules in /usr/lib/scons.

Where is SCons PY?

bat is in C:\Python38 and scons.py is in C:\Python38\Scripts . To run scons, it needs to find scons. bat first.

How do I run SCons on Windows?

To install SCons you need to have Python already installed. If you are using Linux then most likely you'll have Python already. If you have Windows you can check if you already have it; some packages might have installed it already. First, get a command line.

What is Ubuntu SCons?

DESCRIPTION. The scons utility builds software (or other files) by determining which component pieces must be rebuilt and executing the necessary commands to rebuild them.


2 Answers

An alternative to MacPorts would be to use HomeBrew, where you'd just to

brew install scons 
like image 99
Joseph Wright Avatar answered Sep 20 '22 15:09

Joseph Wright


Download the tarball and then refer to the first chapter of the user guide, Building and Installing SCons. In short:

 # cd scons-1.2.0 # python setup.py install 
like image 25
Rob Kennedy Avatar answered Sep 20 '22 15:09

Rob Kennedy