无法在 ubuntu 中使用 pip3 为 django 安装 mysqlclient
unable to install mysqlclient for django using pip3 in ubuntu
命令: sudo -H pip3 install mysqlclient
错误:
/usr/bin/ld: cannot find -lssl
/usr/bin/ld: cannot find -lcrypto
collect2: error: ld returned 1 exit status
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
Command "/usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-b0rfercj
/mysqlclient/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n',
'\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-lck3vdnw-record
/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in
/tmp/pip-build-b0rfercj/mysqlclient/
我已经安装了python3-dev
python3-dev is already the newest version (3.6.7-1~18.04).
你安装了libssl
和libcrypto
了吗?
sudo apt-get install libssl-dev
sudo apt-get install libssl-dev
命令: sudo -H pip3 install mysqlclient
错误:
/usr/bin/ld: cannot find -lssl
/usr/bin/ld: cannot find -lcrypto
collect2: error: ld returned 1 exit status
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
Command "/usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-b0rfercj
/mysqlclient/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n',
'\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-lck3vdnw-record
/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in
/tmp/pip-build-b0rfercj/mysqlclient/
我已经安装了python3-dev
python3-dev is already the newest version (3.6.7-1~18.04).
你安装了libssl
和libcrypto
了吗?
sudo apt-get install libssl-dev
sudo apt-get install libssl-dev