{"id":9630,"date":"2026-05-10T23:30:35","date_gmt":"2026-05-10T23:30:35","guid":{"rendered":"https:\/\/pariswells.com\/blog\/?p=9630"},"modified":"2026-05-10T23:30:36","modified_gmt":"2026-05-10T23:30:36","slug":"python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135","status":"publish","type":"post","link":"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135","title":{"rendered":"Python &#8211; ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135)"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code class=\"\">python3 -m pip install pdfplumber pymupdf openpyxl pillow requests --trusted-host pypi.org --trusted-host files.pythonhosted.org\nDefaulting to user installation because normal site-packages is not writeable\nWARNING: There was an error checking the latest version of pip.\nERROR: Exception:\nTraceback (most recent call last):\n  File \"Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py\", line 107, in _run_wrapper\n    status = _inner_run()\n  File \"Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py\", line 98, in _inner_run\n    return self.run(options, args)\n           ~~~~~~~~^^^^^^^^^^^^^^^\n  File \"\\Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\req_command.py\", line 96, in wrapper\n    return func(self, options, args)\n  File \"\\Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\commands\\install.py\", line 340, in run\n    session = self.get_default_session(options)\n  File \"C:\\Users\\pwell\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\index_command.py\", line 82, in get_default_session\n    self._session = self.enter_context(self._build_session(options))\n                                       ~~~~~~~~~~~~~~~~~~~^^^^^^^^^\n  File \"\\Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\index_command.py\", line 101, in _build_session\n    ssl_context = _create_truststore_ssl_context()\n  File \"\\Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\index_command.py\", line 51, in _create_truststore_ssl_context\n    ctx = truststore.SSLContext(ssl.PROTOCOL_TLS_CLIENT)\n  File \"C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.13_3.13.3568.0_x64__qbz5n2kfra8p0\\Lib\\ssl.py\", line 438, in __new__\n    self = _SSLContext.__new__(cls, protocol)\nssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135)<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">What\u2019s wrong<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The failure is&nbsp;not&nbsp;pip or your packages.&nbsp;<code class=\"\">ssl<\/code>&nbsp;is broken before any download: creating a TLS context raises&nbsp;<code class=\"\">SSL: LIBRARY_HAS_NO_CIPHERS<\/code>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We confirmed:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Without any change,\u00a0<code class=\"\">ssl.create_default_context()<\/code>\u00a0fails the same way pip does.<\/li>\n\n\n\n<li>With\u00a0<code class=\"\">OPENSSL_CONF=NUL<\/code>,\u00a0<code class=\"\">ssl.create_default_context()<\/code>\u00a0succeeds\u00a0and\u00a0<code class=\"\">pip install<\/code>\u00a0completes\u00a0(your packages installed successfully in this environment).<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">So OpenSSL is reading a&nbsp;system config that leaves you with no usable TLS ciphers.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Likely root cause (system&nbsp;<code>openssl.cnf<\/code>)<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Under&nbsp;<code>C:\\Program Files\\Common Files\\SSL\\openssl.cnf<\/code>, the OpenSSL 3&nbsp;provider&nbsp;section turns on&nbsp;legacy&nbsp;but does&nbsp;not&nbsp;activate the&nbsp;default&nbsp;provider:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">[default_sect]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"># activate = 1<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">[legacy_sect]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">activate = 1<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">OpenSSL\u2019s own comments in that file say that if you explicitly activate other providers, you usually must&nbsp;also&nbsp;activate the&nbsp;default&nbsp;provider, or things break. That matches \u201clibrary has no ciphers\u201d for normal TLS.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What you can do<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. Quick workaround (no admin)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In&nbsp;PowerShell&nbsp;for that session:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">$env:OPENSSL_CONF = &#8216;NUL&#8217;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">python3 -m pip install &#8230;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Or one line:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">$env:OPENSSL_CONF=&#8217;NUL&#8217;; python3 -m pip install pdfplumber pymupdf openpyxl pillow requests<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To make it permanent for your user:&nbsp;System Properties ? Environment Variables ? User&nbsp;? add&nbsp;<code class=\"\">OPENSSL_CONF<\/code>&nbsp;=&nbsp;<code class=\"\">NUL<\/code>. (Some other OpenSSL-based tools will also skip the broken global config.)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Proper fix (needs Administrator)<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Edit&nbsp;<code>C:\\Program Files\\Common Files\\SSL\\openssl.cnf<\/code>, in&nbsp;<code class=\"\">[default_sect]<\/code>,&nbsp;uncomment&nbsp;so the default provider is activated:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">[default_sect]<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">activate = 1<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Save (elevated\/editor as admin). After that you can drop&nbsp;<code class=\"\">OPENSSL_CONF=NUL<\/code>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What\u2019s wrong The failure is&nbsp;not&nbsp;pip or your packages.&nbsp;ssl&nbsp;is broken before any download: creating a TLS context raises&nbsp;SSL: LIBRARY_HAS_NO_CIPHERS. We confirmed: So OpenSSL is reading a&nbsp;system config that [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-9630","post","type-post","status-publish","format-standard","hentry","category-research"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"python3 -m pip install pdfplumber pymupdf openpyxl pillow requests --trusted-host pypi.org --trusted-host files.pythonhosted.org Defaulting to user installation because normal site-packages is not writeable WARNING: There was an error checking the latest version of pip. ERROR: Exception: Traceback (most recent call last): File &quot;Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py&quot;, line 107, in _run_wrapper status = _inner_run() File &quot;Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py&quot;, line 98, in\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"paris\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Welcome to Pariswells.com |\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Python \u2013 ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135) | Welcome to Pariswells.com\" \/>\n\t\t<meta property=\"og:description\" content=\"python3 -m pip install pdfplumber pymupdf openpyxl pillow requests --trusted-host pypi.org --trusted-host files.pythonhosted.org Defaulting to user installation because normal site-packages is not writeable WARNING: There was an error checking the latest version of pip. ERROR: Exception: Traceback (most recent call last): File &quot;Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py&quot;, line 107, in _run_wrapper status = _inner_run() File &quot;Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py&quot;, line 98, in\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-05-10T23:30:35+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-05-10T23:30:36+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Python \u2013 ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135) | Welcome to Pariswells.com\" \/>\n\t\t<meta name=\"twitter:description\" content=\"python3 -m pip install pdfplumber pymupdf openpyxl pillow requests --trusted-host pypi.org --trusted-host files.pythonhosted.org Defaulting to user installation because normal site-packages is not writeable WARNING: There was an error checking the latest version of pip. ERROR: Exception: Traceback (most recent call last): File &quot;Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py&quot;, line 107, in _run_wrapper status = _inner_run() File &quot;Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py&quot;, line 98, in\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#article\",\"name\":\"Python \\u2013 ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135) | Welcome to Pariswells.com\",\"headline\":\"Python &#8211; ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135)\",\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"},\"datePublished\":\"2026-05-10T23:30:35+00:00\",\"dateModified\":\"2026-05-10T23:30:36+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#webpage\"},\"articleSection\":\"Research\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research#listItem\",\"name\":\"Research\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research#listItem\",\"position\":2,\"name\":\"Research\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#listItem\",\"name\":\"Python &#8211; ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135)\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#listItem\",\"position\":3,\"name\":\"Python &#8211; ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135)\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research#listItem\",\"name\":\"Research\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\",\"name\":\"Welcome to Pariswells.com\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris\",\"name\":\"paris\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"paris\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#webpage\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135\",\"name\":\"Python \\u2013 ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135) | Welcome to Pariswells.com\",\"description\":\"python3 -m pip install pdfplumber pymupdf openpyxl pillow requests --trusted-host pypi.org --trusted-host files.pythonhosted.org Defaulting to user installation because normal site-packages is not writeable WARNING: There was an error checking the latest version of pip. ERROR: Exception: Traceback (most recent call last): File \\\"Packages\\\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\\\LocalCache\\\\local-packages\\\\Python313\\\\site-packages\\\\pip\\\\_internal\\\\cli\\\\base_command.py\\\", line 107, in _run_wrapper status = _inner_run() File \\\"Packages\\\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\\\LocalCache\\\\local-packages\\\\Python313\\\\site-packages\\\\pip\\\\_internal\\\\cli\\\\base_command.py\\\", line 98, in\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"datePublished\":\"2026-05-10T23:30:35+00:00\",\"dateModified\":\"2026-05-10T23:30:36+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\",\"name\":\"Welcome to Pariswells.com\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Python \u2013 ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135) | Welcome to Pariswells.com","description":"python3 -m pip install pdfplumber pymupdf openpyxl pillow requests --trusted-host pypi.org --trusted-host files.pythonhosted.org Defaulting to user installation because normal site-packages is not writeable WARNING: There was an error checking the latest version of pip. ERROR: Exception: Traceback (most recent call last): File \"Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py\", line 107, in _run_wrapper status = _inner_run() File \"Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py\", line 98, in","canonical_url":"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#article","name":"Python \u2013 ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135) | Welcome to Pariswells.com","headline":"Python &#8211; ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135)","author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"},"datePublished":"2026-05-10T23:30:35+00:00","dateModified":"2026-05-10T23:30:36+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#webpage"},"isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#webpage"},"articleSection":"Research"},{"@type":"BreadcrumbList","@id":"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/pariswells.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/research#listItem","name":"Research"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/research#listItem","position":2,"name":"Research","item":"https:\/\/pariswells.com\/blog\/category\/research","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#listItem","name":"Python &#8211; ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135)"},"previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#listItem","position":3,"name":"Python &#8211; ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135)","previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/research#listItem","name":"Research"}}]},{"@type":"Organization","@id":"https:\/\/pariswells.com\/blog\/#organization","name":"Welcome to Pariswells.com","url":"https:\/\/pariswells.com\/blog\/"},{"@type":"Person","@id":"https:\/\/pariswells.com\/blog\/author\/paris#author","url":"https:\/\/pariswells.com\/blog\/author\/paris","name":"paris","image":{"@type":"ImageObject","@id":"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g","width":96,"height":96,"caption":"paris"}},{"@type":"WebPage","@id":"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#webpage","url":"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135","name":"Python \u2013 ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135) | Welcome to Pariswells.com","description":"python3 -m pip install pdfplumber pymupdf openpyxl pillow requests --trusted-host pypi.org --trusted-host files.pythonhosted.org Defaulting to user installation because normal site-packages is not writeable WARNING: There was an error checking the latest version of pip. ERROR: Exception: Traceback (most recent call last): File \"Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py\", line 107, in _run_wrapper status = _inner_run() File \"Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py\", line 98, in","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135#breadcrumblist"},"author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"creator":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"datePublished":"2026-05-10T23:30:35+00:00","dateModified":"2026-05-10T23:30:36+00:00"},{"@type":"WebSite","@id":"https:\/\/pariswells.com\/blog\/#website","url":"https:\/\/pariswells.com\/blog\/","name":"Welcome to Pariswells.com","inLanguage":"en-US","publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Welcome to Pariswells.com |","og:type":"article","og:title":"Python \u2013 ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135) | Welcome to Pariswells.com","og:description":"python3 -m pip install pdfplumber pymupdf openpyxl pillow requests --trusted-host pypi.org --trusted-host files.pythonhosted.org Defaulting to user installation because normal site-packages is not writeable WARNING: There was an error checking the latest version of pip. ERROR: Exception: Traceback (most recent call last): File &quot;Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py&quot;, line 107, in _run_wrapper status = _inner_run() File &quot;Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py&quot;, line 98, in","og:url":"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135","article:published_time":"2026-05-10T23:30:35+00:00","article:modified_time":"2026-05-10T23:30:36+00:00","twitter:card":"summary","twitter:title":"Python \u2013 ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135) | Welcome to Pariswells.com","twitter:description":"python3 -m pip install pdfplumber pymupdf openpyxl pillow requests --trusted-host pypi.org --trusted-host files.pythonhosted.org Defaulting to user installation because normal site-packages is not writeable WARNING: There was an error checking the latest version of pip. ERROR: Exception: Traceback (most recent call last): File &quot;Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py&quot;, line 107, in _run_wrapper status = _inner_run() File &quot;Packages\\PythonSoftwareFoundation.Python.3.13_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python313\\site-packages\\pip\\_internal\\cli\\base_command.py&quot;, line 98, in"},"aioseo_meta_data":{"post_id":"9630","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":{"faqs":[],"keyPoints":[],"schemas":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2026-05-10 23:28:51","updated":"2026-05-10 23:30:36","primary_term":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/blog\/category\/research\" title=\"Research\">Research<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tPython \u2013 ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135)\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/pariswells.com\/blog"},{"label":"Research","link":"https:\/\/pariswells.com\/blog\/category\/research"},{"label":"Python &#8211; ssl.SSLError: [SSL: LIBRARY_HAS_NO_CIPHERS] library has no ciphers (_ssl.c:3135)","link":"https:\/\/pariswells.com\/blog\/research\/python-ssl-sslerror-ssl-library_has_no_ciphers-library-has-no-ciphers-_ssl-c3135"}],"_links":{"self":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/9630","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/comments?post=9630"}],"version-history":[{"count":1,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/9630\/revisions"}],"predecessor-version":[{"id":9631,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/9630\/revisions\/9631"}],"wp:attachment":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/media?parent=9630"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/categories?post=9630"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/tags?post=9630"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}