Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialalborz
Full Stack JavaScript Techdegree Graduate 30,885 Points'MySQL' command returns an error in the terminal
Hi!
When ever I run mysql
in the terminal, I get an error message.
Here's the error message below after running the command:
alborzs-mbp:biller alborz$ mysql
dyld: Library not loaded: @@HOMEBREW_PREFIX@@/opt/openssl/lib/libssl.1.0.0.dylib
Referenced from: /usr/local/bin/mysql
Reason: image not found
Trace/BPT trap: 5
alborzs-mbp:biller alborz$
I'm not sure what to do if I can't run this simple command. Any help is appreciated!
Thank you!!!
3 Answers
alborz
Full Stack JavaScript Techdegree Graduate 30,885 PointsHere is the solution that I found for this problem.
https://apple.stackexchange.com/questions/98999/mysql-not-working-on-mountain-lion
Stone Preston
42,016 Pointsalright now install the xcode command line tools
sudo xcode-select --install
alborz
Full Stack JavaScript Techdegree Graduate 30,885 PointsSomething doesn't seem right...
alborzs-mbp:biller alborz$ sudo xcode-select --install
Password:
Usage: xcode-select -print-path
or: xcode-select -switch <xcode_folder_path>
or: xcode-select -version
Arguments:
-print-path Prints the path of the current Xcode folder
-switch <xcode_folder_path> Sets the path for the current Xcode folder
-version Prints xcode-select version information
alborzs-mbp:biller alborz$
Stone Preston
42,016 Pointshmm strange. guess that command no longer works. create a free developer account with apple and install teh command line tools from this link. that seems to be the only way to install them now
alborz
Full Stack JavaScript Techdegree Graduate 30,885 PointsOkay, I successfully installed command line tools from https://developer.apple.com/downloads/index.action# for 10.9...
Then I tried installing openssl again but got the same messages as before. :(
Stone Preston
42,016 Pointstry restarting your computer then trying again
alborz
Full Stack JavaScript Techdegree Graduate 30,885 PointsUnfortunately that doesn't solve the issue either. :(
Stone Preston
42,016 Pointstry removing openssl then reinstalling it:
brew remove openssl
brew install openssl
alborz
Full Stack JavaScript Techdegree Graduate 30,885 PointsHere is what I got.... Error?
alborzs-mbp:biller alborz$ brew remove openssl
Uninstalling /usr/local/Cellar/openssl/1.0.1j...
alborzs-mbp:biller alborz$ brew install openssl
Warning: You seem to have osx-gcc-installer installed.
Homebrew doesn't support osx-gcc-installer. It causes many builds to fail and
is an unlicensed distribution of really old Xcode files.
Please run `xcode-select --install` to install the CLT.
Warning: You have an outdated version of /usr/bin/install_name_tool installed.
This will cause binary package installations to fail.
This can happen if you install osx-gcc-installer or RailsInstaller.
To restore it, you must reinstall OS X or restore the binary from
the OS packages.
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/openssl-1.0.1j_1.mavericks.bottle.tar.gz
######################################################################## 100.0%
Error: SHA1 mismatch
Expected: 65e125a4777eb6dfb63f01a18f724246123dd79e
Actual: eac5e2d21af64224fc533ebb793b99a2aea434c7
Archive: /Library/Caches/Homebrew/openssl-1.0.1j_1.mavericks.bottle.tar.gz
To retry an incomplete download, remove the file above.
Warning: Bottle installation failed: building from source.
==> Installing openssl dependency: makedepend
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/makedepend-1.0.5.mavericks.bottle.tar.gz
######################################################################## 100.0%
Error: SHA1 mismatch
Expected: 83db1daee01e4eb752c711934eb88850b3ee70d6
Actual: eac5e2d21af64224fc533ebb793b99a2aea434c7
Archive: /Library/Caches/Homebrew/makedepend-1.0.5.mavericks.bottle.tar.gz
To retry an incomplete download, remove the file above.
Warning: Bottle installation failed: building from source.
Error: /usr/local/opt/pkg-config not present or broken
Please reinstall pkg-config. Sorry :(
alborzs-mbp:biller alborz$