Can't install Postgres on MacBook M1, Mac OS Monterey 12.4 - postgresql

I have problems installing Postgres on my MacBook M1
The Downloaded Installer is failing (Error in Postprocessing) from www.enterprisedb.com and when I try it with "Port" it is not working (it installs, but doesn't install executables like "pg_ctl")
Is there a solution?
(10 years ago I´ve downloaded the source and compiled it)

Nowadays I would suggest same like Calin's comment:
Install using Homebrew
brew install postgresql
As you can see on brew.sh when searching for formula postgresql it has binaries (Bottle) supporting:
Apple Silicon (M1) on macOS Monterey
See also:
Installing Postgres via Brew (OSX)
Installing Postgres with brew in 2 easy steps – An Integrated World
postgresql not installed but homebrew reports it is

Related

MySQLWorkbench crashes on macOS Ventura 13.2 when trying to execute "show tables"

Title says it all.
Latest version of MySQLWorkbench (8.0.32) crashes on macOS 13.2 when trying to execute "show tables".
On mysql in the terminal on the other hand the command works fine.
Install previous version of MySQLWorkbench, 8.0.31.
Be aware that I could not find a way to install a specific version of MySQLWorkbench through homebrew, so you need to download and install it manually from the website.

Install DeepSpeech on Mac M1

At the moment I need to install and run DeepSpeech on my local.
Can someone help me how with installing DeepSpeech on my Mac. I have already installed Python 3.10.0 but it seems like this version do not work with DeepSeech

Unable to install locust on windows

Hi i am trying to install locust on windows with python version 3.7.3, using pip install locustio but getting below error.
ERROR: Could not build wheels for gevent which use PEP 517 and cannot be installed directly
I was getting above error because Visual Studio was not installed in my machine. When I did I was able to install locust, and its working fine now.
Had faced a similiar issue on MacOS.
The MacOS Catalina update upgraded my system python was 3.8. (Gevent works with <3.7)
Installing a lower version with pyenv fixed it.

Issues understanding homebrew on my mac running 10.7 os/x

I tried installing postgres on my mac using homebrew.
It's not working.
How do I remove what homebrew put in for me?
Thanks.
How about 'brew list' to see what you installed and 'brew remove [your-program]'? I guess this is all in the brew manpage. And even more info on this page about PostgreSQL on OS X.

paperclip image broken in rails 3.1rc4

I am using rails 3.1rc4 with paperclip and i cannot upload any image file with. I keep getting this error
Image D:/Users/MOBILE/AppData/Local/Temp/stream20110612-3872-y7hmme-0.jpg is not recognized by the 'identify' command. I have imagemagic installed. But it works in <= rails 3.0.8rc4.
I'm on Mac and I had the exact same problem after I updated to Mac OS Lion,
in order to fix this error I had to reinstall imagemagick
This might help other Mac OS Lion users:
First make sure to download the latest XCode from the app store (4.1 atm I believe, it's free)
Using Homebrew:
brew uninstall imagemagick
brew update
if you get any errors, clean up files ending in .a or .la with "brew doctor",
then just do
brew install imagemagick
If you are using MacPorts do:
port uninstall imagemagick
port selfupdate
port install imagemagick
I am not sure if this will adress your specific issue but I found this and maybe its related:
https://github.com/thoughtbot/paperclip/issues/481
It states:
The paperclip:refresh:metadata rake task fails with Rails 3.1 as ActiveRecord no longer supports instance.save(false) - you must now use instance.save(:validate => false) instead.