Ld Library Not Found For Lssl Mysql

Install Python MySQLClient on M1 Mac

tags: pythonmacm1mysqlclientmysql

The parameter '-lnsl' is a a lower-case 'L' (which describes a library to be searched) followed by the suffix of the name of the library, 'nsl'. The effect is to tell 'ld' to look for a library named 'libnsl.a' or 'libnsl.dylib'. The 'ld' command normally searches for ibraries in the directories /usr/lib and /usr/local/lib. Python - macOS 10.14 mysql 5.7 python 2.7 mysqlclient 1.3 pip install 出现 ld: library not found for -lssl 小G哥 2019-02-08T14:41:52Z 2 mysql - macOS brew 安装 mysql 5.7. GitHub is where the world builds software. Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.

Mysql

The following records how to solve the installation Python on the M1 Macmysqlclient Failure problem.

Installation process

The installation command:

Installmysqlclient The following problem will appear:

This problem can be installed locallymysql To resolve:

According to the first installation failure, the second installation is performed:

Then try installingmysqlclient The following problems occurred again:

Library not found for -lssl

PassSee content 1Know that I need to installzstd

Finishzstd Try installationmysqlclient, But still that errorld: library not found for -lThen bySee content 2 I know that I can passenv Set the environment variable to specify the location of the dependency library:

Similar questions were found:

InSee content 2 I can know that I need to install it.openssl

In confirmation already installedopenssl After, try to installmysqlclientI found that the problem is still not solved, then pass it againenv Set upopenssl Dependent library location:

Ediabas tool32. It is successfully installed here.mysqlclient

Reference

Intelligent Recommendation

Recently encountered a problem, mysqlclient library cannot be installed on Windows10 Python At this time, you need to download the .whl file for installation. First go to this website to download the ..

Python compile and install mysqlclient

After the local database is changed to MariaDB, Python uses mysqlclient to connect to the database. solve https://exiz.org/20171211141362..

Install mysqlclient To enable python to operate mysql, you need MySQLdb driver, which is an indispensable module for python to operate mysql. Install using pip test The test is very simple, che..

How to install PYTHON Barcode SDK with PIP on Apple M1 Mac

DynamSoft Barcode Reader SDK A multi-function barcode read control, you can embed the barcode reading feature to the web or desktop application with only a few lines of code. This saves monthly develo..

background: Just a small white in MAC M1, installing Flask for a few days, I hope to solve your problem. The MAC comes with a Python2.7 environment, downloaded the Python 3.7 community version, so the..

More Recommendation

M1 chip mac install office

Ld library not found for lssl mysql command

Xiao Bian is a fan of Apple's brains, and has been using Apple's mac system for photo editing for many years! Is a loyal mac fan. Just in November, Apple released a new Mac series based on the Apple S..

Introduction Homebrew is an excellent tool for managing software packages on Mac. It is divided into two versions: X86 architecture and ARM architecture. Because our computer is an M1 chip, we give pr..

M1 Mac Quickly Install HomeBrew

Switching terminal The terminal of M1 is -zsh There will be some other problems in installing homebrew, so it is changed here to bash. Enter Bash directly in the terminal: Download the official instal..

Mac M1 Docker Install Redis 1, redis mirror drawn, latest version of mirror Start Docker, turn on the terminal input command: Docker Pull Redis: Latest patient is waiting to take. 2, check if local mi..

Mac, M1 how to install Maven

Mac Mac installation Maven 1, install maven via Homebrew Set an environment variable Method 2 Download Maven Package directly 1, install maven via Homebrew Can't find command Here, you need to configu..

Question or issue on macOS:

I’m setting up my development environment in the new macOS Sierra .

First of all, I installed Rbenv, Ruby (2.3.1), Homebrew and so the latest version of MySQL (5.7.15).

Ok, MySQL was initialized. Time to install the mysql2 gem…

But it didn’t work. 😞

How to solve this problem?

Solution no. 1:

I just had the same problem, tried all of the solutions listed above, then commenced to bang my head against they keyboard for a couple of hours.

I then thought to try and install/reinstall the Xcode Command Line Tools:

Once I did that the mysql2 gem installed w/ no problems. I hope that does the trick!

Solution no. 2:

When you install openssl via brew, you should get the following message:

Ld Library Not Found For Lssl Mysql


Apple has deprecated use of OpenSSL in favor of its own TLS and crypto libraries
Generally there are no consequences of this for you. If you build your
own software and it requires this formula, you’ll need to add to your
build variables:
LDFLAGS: -L/usr/local/opt/openssl/lib
CPPFLAGS: -I/usr/local/opt/openssl/include
PKG_CONFIG_PATH: /usr/local/opt/openssl/lib/pkgconfig

You can set these build flags (for the local application) by running the following:

This worked for me.

See bundler’s documentation for more information.

Solution no. 3:

Lots of great answers, I was able to combine them into this:

because I was not comfortable with bundle config

Solution no. 4:

I am here to share my fix, since the other answers didn’t work.

For my environment, I need MySQL 5.6 so I had to use:

brew install mysql56 instead of brew install mysql

Bundle installing the mysql2 gem kept failing, until:

brew link mysql56

I also ran afterwards:

mysql.server start

The last step might be unnecessary, but just in case.

Solution no. 5:

With Mac OS 10.15 Catalina when I tried Alessandro’s fix the gem and extensions could be installed correctly but bundle install failed. What worked was just:

without the cppflags part.

Solution no. 6:

Here’s what worked for me.

Originally I ran:

then

I received an error in /Users/…/.bundle/ruby/2.5.0/extensions/x86_64-darwin-18/2.5.0/mysql2-0.5.3/mkmf.log :

Ld Library Not Found For Lssl

clang: error: unsupported option ‘–with-cppflags=-I/usr/local/opt/openssl/include’

So I removed “–with-cppflags=-I/usr/local/opt/openssl/include”

Then ran:

followed by:

Which worked.

Solution no. 7:

Almost the same scenario as @Caio Tarifa, Ruby 2.3.3, mysql 5.6 and mysql2. Tried on couple of solutions above and finally make it work with @kylekeesling’s approach.

First, tried on solution 1 by @spickermann:

Ld Library Not Found For Lssl Mysql

Ld Library Not Found For Lssl Mysql Database

Nothing happened, same error shown.

Second, tried on solution by @Alessandro Berardi:

This got different but more errors since it overwrite gem extension’s config so all gem extension installation failed.

Ld Library Not Found For Lssl Mysql Server

Finally, tried on @kylekeesling solution:

It fix mysql gem issue as well as nikogiri. Since I already intall Xcode, in my case it’s reinstall the Xcode Command Line Tools.

Solution no. 8:

Library Not Found For -lssl

Try installing xcode-select –install

Solution no. 9:

So I ran into this similar issue and for me it turned out to be a wrong ruby version and incompatible MySQL version. I use ruby 2.3 on most of my projects but inherited a 2.1 project. Changing to rvm to use 2.1 got me a little further.

Then I found this: https://github.com/brianmario/mysql2/issues/603 that said you had to use mysql2 gem version greater than 0.3.17 with MySQL version 5.7

Updated gem to 0.3.17 and it fired right up. Hope this helps someone.

Ld Library Not Found For Lssl Mysql Download

Solution no. 10:

Ld Library Not Found For Lssl Mysql Command

If none of the above works . like in my case, doing this solved the issue
brew install openssl

FYI: i am using MacOS Catalina

Hope this helps!