December 25, 2022

Fix "pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available." In Termux


 Many of Termux users facing issue of pip module when you trying to update or install pip package, it will shows following error - 


WARNING: pip is configured With Locations that require TLS/
SSL. however the SSI module in Python is not available.
WARNING: Retrying (Retry( total-a, connect-Noner read=None,
redirect=None, status=None)) after connection broken by 'SS
connect to HTTPS URL because the SSL module i
s not available. :
/ simple/prettytable/


The main issue is occurring due to missing SSL module. So we required SSL module to use pip. To fix this issue, we need to install openssl package into Termux. So follow these steps to fix this issue.

 

Steps -

1) Update packages

$ apt update && apt upgrade


2) Now install openssl package

$ apt install openssl


3) After installing openssl, check pip is working or not

$ pip install --upgrade pip


4) If there isn't error, Then it means issue is resolved.


If you have any issue related to this post, Please comment below.

 

Also Read -

How to create a ESP8266 Wi-Fi Deauthenticator 

Useful OSINT tool for Bug Hunters - Photon

 

Tags -

#termux #issue #pip #pipissue #ssl

0 comments:

Post a Comment

If you have any problem regrading this post, leave a comment !