atiilla / woopy

🚀 DevOps magic for WooCommerce! Generate apps effortlessly with Docker Compose. All-in-one solution for streamlined development. Dockerize and WooCommerce-ize with ease! 🛠️🐳 #DevOps #WooCommerce
Apache License 2.0
3 stars 1 forks source link

iOS - SSL Certification Issue #2

Open SergeyRyskin opened 1 month ago

SergeyRyskin commented 1 month ago

Hi! When I try to run code on iOS Simulator first error that I reach it was a SSL error and it look like NotOpenSSLWarning: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with 'LibreSSL 2.8.3'. See: https://github.com/urllib3/urllib3/issues/3020 warnings.warn(

So to fix that error you must to run following commands in your terminal/bash

1-) You must install a openssl@1.1 brew install openssl@1.1 2-) You must to install urllib from your project terminal using following command pip install urllib3=1.26.15

Then run your code again and it should help. BTW: Before start your code, you must to package you iOS app. For package you can use briefcase package ios command. For mode information you can check this doc: https://briefcase.readthedocs.io/_/downloads/en/stable/pdf/

codesapienbe commented 3 weeks ago

Thank for your feedback. We will shortly implement the fix in prerequisites script.