mysql workbench on 64bit Mac OSX - mysql

I need to insall mysql Workbench on a 64 bit Mac OSX, but there only seems to be a 32 bit at the download page: http://dev.mysql.com/downloads/workbench/5.2.html
Does anyone know if there is a 64 bit available? Or is it OK to install the 32 bit version on a 64 bit Mac?
Many thanks in advance!

You can install the 32 bit version and it will run just fine, i do it on my own Mac.

Related

Why won't MySQL 8.0.28 install on macOS 12 Monterey?

I downloaded the community version of MySQL but it won't install on macOS. How come?
Since the introduction of Apple M1 CPU, software like MySQL provided 2 versions for Apple M1 CPU (arm) and Intel CPU (x86).
Please make sure you downloaded the right version.
This works for me:
To download the MySQL Community Server, go to MySQL Community Downloads page and click Download button for macOS 11 (ARM, 64bit), DMG Archive. This will download the MySQL Community Server version 8.0. 27 file in your macOS' Download folde
I got the error below :
"mysql-8.0.31-macos12-x86_64.pkg” cannot be opened because it is from an unidentified developer."
Below steps resolved this issue on my mac m1.
Download the x86 version(DMG) for Mac M1.
Double click the DMG and it'll open the .pkg file.
Rather than double clicking on the .pkg file, right click and open the package.
I encountered the same issue. I was able to resolve it by downloading the x86 version on my Macbook
As an workaround you also could consider getting mysql from brew with brew install mysql.
I found the Solution. You have to allow it to pass through in the system setting. Watch this video https://www.youtube.com/watch?v=W1AxFoomV0c

How to install MySql 32 bit on Mac OS 64 bit?

The wxPython package must run in 32 bit mode, but the official MySql download page does not have any link to download the 32bit installer. Do you know where to download the 32bit installer of MySql?
Thanks
UPDATE: I am trying to download MySql 32 bit for Mac.
You are incorrect. The Cocoa build of wxPython supports both 32-bit and 64-bit architectures. From the wxPython downloads page:
The file with "cocoa" in the name use the Cocoa API for implementing the GUI, requires at least OSX 10.5, and supports either 32-bit or 64-bit architectures.
The Carbon builds are built for i386 and PPC.
Also note that if you go into the Development Releases tab on the MySQL downloads page, it has 32-bit tars and dmgs

Chrome Driver for Windows 8 64 bit

I am new to Selenium and writing my test cases only for firefox. I wish to write it also for Chrome driver. But where should I download for Widows 8 64 bit.
Have you tried with 32-bit Windows ChromeDriver here? What's wrong with it? If there are any errors, post full exception please.
As far as I know, there isn't a 64-bit Chrome on Windows yet (see this ticket), as a result, there is no ChromeDriver for 64-bit Windows.
Here 32/64 bit are in term of the browsers' architecture, not the OS. Please check if your Chrome 32-bit or not, if it's 32-bit, download the 32-bit ChromeDriver.

Mysql Command line not working on mac

When I try to access mysql command line on my mac it gives me this error - it doesn't matter what mysql command, username, password, server or I use either:
Launch of "mysql" failed: the PowerPC architecture is no longer supported.
This happened right after I installed Mac OS X lion. I am using MAMP Pro - I am upgraded to the latest version: 2.0.3- as my stack and I was wondering if anyone had any solutions for me. This is kind of a priority since I need it to handle large mysql imports.
BTW, I don't have a powerpc. I have intel core duo 2.66ghz
Try downloading and reinstalling MySQL from http://www.mysql.com/downloads/mysql/. Depending on your machine, you'll want to either grab the Mac OS X ver. 10.6 (x86, 64-bit) or Mac OS X ver. 10.6 (x86, 32-bit) version.
Maybe you should install another version of mysql or you can install xampp at
http://www.apachefriends.org/en/xampp-macosx.html

Install both 32 bit and 64 bit versions of mysql on a same mac machine

I am currently working on two projects in python. One need python 2.5 and other 2.7.
Now the problem is when I installed mysql python for 2.5 it required 32 bit version of mysql and it was not working with 64 bit version. So I installed 32 bit version. This project is done by using virtualenv.
Now I need to run it on 2.7 and it wants 64 bit version of mysql.
I cannot reinstall mysql as old project is still on.
Is it possible to install both bit versions of mysql in my Snow Leopard 10.6? If possible then how?
It is possible but you'll need to to compile them by hand, start by creating separate folders for them to live in, then get the source and dependencies that they'll need and keep them separate, you'll need to alter the ./configure commands to point them to the correct places and they should build fine.