You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 [email protected] brew install [email protected]
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/
The text was updated successfully, but these errors were encountered:
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 [email protected]
brew install [email protected]
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/
The text was updated successfully, but these errors were encountered: