Where can I download PostgreSQL 8.2.16 installer for OSX? - macos

I've been searching for about an hour, but could not find any installer for this version...

I have been using Homebrew for OSX, and have been really happy with it. After you install it, you can
$ brew install postgresql
and get a clean installation of postgres. However, it doesn't install any gui tools, just psql.
http://github.com/mxcl/homebrew
http://www.engineyard.com/blog/2010/homebrew-os-xs-missing-package-manager/
EDIT:
Apologies, I think the brew formula is building 8.4.3 right now, but it shouldn't be too hard to edit it to use the version you require...
EDIT #2:
You might be able to find the version you want here:
http://www.enterprisedb.com/products/postgres_plus/getinstaller.do

Related

Install Influxdb 1.8.3 from tar.gz on Mac

Hi there I want to install an old version of InfluxDB on a Mac. I have found what I think is the right tar.gz file on GitHub (at https://dl.influxdata.com/influxdb/releases/influxdb-1.8.3_darwin_amd64.tar.gz), downloaded and unzipped it. But with no configure or make file that I can find I don’t know how to install it as all the instructions I can find seem to reference those executables.
As someone who is learning as I go along any help would be much appreciated!
Thanks
You can use homebrew to install influxdb v1 on macOS,
brew update
brew install influxdb#1
Refer to official docs for the detail.

GDL not found after installing with homebrew

I used brew install GDL. The install was completed, but once I try to use GDL, it says " command not found: gdl".
I used "which gdl", but still can't be located. I tried reinstalling GDL via brew, but same error.
I tried changing the directory to the folder where brew installed GDL, but no luck either.
I looked through my other compilers and those are saved into bin, while GDL is not (if that's relevant at this point).
Anything will help!
If the intention was to install GNU Data Language, please try installing gnudatalanguage from homebrew-science: https://github.com/brewsci/homebrew-science/blob/master/Formula/gnudatalanguage.rb

How to install libraries (mysql connector cpp) on Mac using terminal and make things simple as in the case of Ubuntu

I will share an example.
I had to install mysql connector c++ libraries for my project.
To install connector c++ on my Mac, i had to build it from the source code and it takes a lot of effort because you get errors sometimes and then it is troublesome, something which should have been done in a short time.
In case of Ubuntu, I just had to write one command in the terminal, and wow, everything just got done automatically.
apt-get install libmysqlcppconn7
Does anybody know any similar command in mac, using brew or macports?
I tried to find but I guess I didn't get any results to satisfaction.
And if there is not, can anyone guide me so that I can make it possible, like I think it's possible for mac, if it is possible in ubuntu.
Please guide me, an answer in a bit detail would be so much appreciated.
Probably the nearest thing to apt-get on a mac is brew
Once it is set up (and this isn't difficult) "brew install mysql-connector-c++" will install on the mac

Is there a way to install Homebrew via graphical interface?

For whatever reason, my place of work distrust installations via CLI.
Is there a GUI installation that can be installed that would keep the IT department happy?
Thanks in advance.
There’s Cakebrew, a GUI wrapper around Homebrew; but it doesn’t install Homebrew for you for now:
It is important to note that Cakebrew doesn't install Homebrew for you. To install Homebrew, please visit their website.
Installing Homebrew though Cakebrew is currently in the To-Do List =)
There’s no way to install Homebrew via GUI.

How to install scons on Mac OS X

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.
An alternative to MacPorts would be to use HomeBrew, where you'd just to
brew install scons
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
Install MacPorts, then at the Terminal (Applications > Utilities > Terminal.app), type:
sudo port install scons
This command will automatically download and install scons for you. MacPorts requires that you have the developer tools installed, so if you don't, you will need to download and install the Xcode 3 DVD.
NOTE 1: Xcode 2.5 is the last version of Xcode that will work on Mac OS X Tiger.
NOTE 2: This may seem awfully painful if you don't already have MacPorts installed. However, you really should go this route, as MacPorts makes it easy to update installed software, it automatically manages dependencies between software, and it makes it easier to install other packages in the future.
If you have the Python setuptools, the following will install scons-1.2.0 from sourceforge:
easy_install scons
But bear in mind the issues people raise with setuptools.
Also, keep in mind this question and the answers about virtualenv and pip for isolating Python environments.
There is also a GUI installer for SCons on Mac OS X that I wrote available for download here:
https://github.com/rviney/scons-mac-installer
Since version 2.3.0 SCons should work without installing:
# get the source and switch to stable 2.3.0 version
hg clone https://bitbucket.org/scons/scons/ -r 2.3.0
# make sure to use Python 2 for now
python scons/src/scripts/scons.py
When running 2.3.0 from source, the SCons.__version__ is not set correctly, so EnsureSConsVersion() will likely to fail if that's ok for you.
pull down SCons source and put it in /Library/Python/X.X/. Make sure you have the dir structure like this: /Library/Python/X.X/SCons/init.py
remember, import searches for modules, and /Library/Python/XXX is by default in the search path.

Resources