- Community Home
- >
- Software
- >
- HPE Morpheus Software
- >
- HPE Morpheus Enterprise
- >
- Solution: Pip SSL: CERTIFICATE_VERIFY_FAILED while...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2022 02:27 AM
07-01-2022 02:27 AM
Solution: Pip SSL: CERTIFICATE_VERIFY_FAILED while running a workflow
I was investigating an issue where a python workflow task was failing with error:
‘There was a problem confirming the ssl certificate: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed error: Could not find a version that satisfies the requirement’
The issue was caused by incorrect index URL on the pip global config file on the Morpheus appliance. When setting the index URL, make sure that it is in a correct format, and there are no whitespaces in the URL.
For example:
[global]
timeout = 60
index-url = https://pypi.org/simple
Note that if you are using custom ports, then specify the port number by adding it to the index-url domain, and also on the trusted-host name. Specifying the port number just on the index-url will not work.
For example:
[global]
timeout = 60
index-url = https://pypi.org:8443/simple
trusted-host = pypi.org:8443
Please refer to the following pip documentation for details on how to setup the config file properly.
https://pip.pypa.io/en/stable/topics/configuration/
- Tags:
- automation
- pip
- Python
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2025 05:32 AM
04-15-2025 05:32 AM
Re: Solution: Pip SSL: CERTIFICATE_VERIFY_FAILED while running a workflow
I would suggest checking out this article:- https://cheapsslweb.com/blog/ssl-certificate-verify-failed-error-in-python/. for the error solution. You can refer to it in detail and might find a helpful solution.
I hope it helps!