[issue44319] setup openssl failed on linux

2021-11-10 Thread Christian Heimes
Christian Heimes added the comment: Update: I came up with a hack that lets you use the openssl11 module from EPEL with Python: https://discuss.python.org/t/modulenotfounderror-no-module-named-mysql-in-python-3-10-0-default-nov-6-2021-1425-gcc-4-8-5-20150623-red-hat-4-8-5-44-on-linux/11823/5

[issue44319] setup openssl failed on linux

2021-11-04 Thread Christian Heimes
Christian Heimes added the comment: /usr/lib64/openssl11 is not a valid OpenSSL root directory. The option expects an OpenSSL installation directory with bin, lib, and include subdirectories. The custom scheme from CentOS EPEL openssl11 package is not supported. -- resolution: -> no

[issue44319] setup openssl failed on linux

2021-10-25 Thread Devin Prescott
Devin Prescott added the comment: This docker file will get you the same environment: ## Build Command ## #docker build --rm -t centos7/builder . ## Run Command ## #docker run --rm -it centos7/builder # INSIDE DOCKER: #make -j $(nproc) FROM centos:7 ##