Is PyPI down right now?
Real-time PyPI status pulled from status.python.org. PyPI is operated by the Python Software Foundation and covers pip downloads, package uploads, the search API, and the project pages on pypi.org. If your CI is failing on `pip install` or `poetry lock` is timing out, this page will tell you whether PyPI itself is degraded.
Major outage: AWS
PyPI
OperationalPython Package Index — pip install backend.
Status from status.python.org · last fetched 3s ago
Developer Platforms
Upstream returned 404
Upstream returned 404
Atlassian source hosting and Pipelines.
Source hosting, Actions, Pages, Packages, Copilot.
macOS / Linux package manager (uses GitHub).
JavaScript registry, install API, web app.
Python Package Index — pip install backend.
AI / ML APIs
Upstream returned invalid JSON
Claude API, Claude.ai, Claude Code.
AI code editor — chat, tab, composer.
AI pair programmer — completions, chat, agents.
Gemini API, Vertex AI, AI Studio.
ChatGPT, GPT-4, GPT-5, DALL-E, Whisper APIs.
Run open-source ML models via API.
Cloud / Hosting
Service disruption: Increased Error Rates — started 5 days ago
Resolution Issues for .de Domains — started 2 hr ago
Elevated error rates on List Machines endpoint — started 13 min ago
Failures to load data across multiple services on the Vercel dashboard, API, and CLI — started 9 hr ago
Upstream returned 404
Upstream returned invalid JSON
Droplets, App Platform, managed databases.
Compute, Storage, BigQuery, Cloud Run.
Azure VMs, App Service, AKS, Azure SQL.
Static + Jamstack hosting, Functions, Forms.
Web services, cron, Postgres, Redis.
Databases / Data
Upstream returned 404
Upstream returned invalid JSON
Upstream returned invalid JSON
Impaired Cluster Operations – AWS me-central-1 (United Arab Emirates) and AWS me-south-1 (Bahrain) — started 65 days ago
Serverless MySQL, Vitess-backed.
Postgres, auth, storage, realtime, edge fns.
Payments / Infra
SMS Delivery Delays from Twilio to Tigo Guatemala — started 1 hr ago
Upstream returned invalid JSON
Upstream returned 404
Upstream returned 404
Developer-first transactional email API.
Transactional + marketing email at scale.
Auth / Identity
Communication
No public machine-readable feed; consult the official status page.
Voice, video, text servers and DMs.
Team messaging, calls, huddles, Connect.
Zoom Phone/Zoom Contact Center General Underlying Provider Maintenance — started 4 days ago
Monitoring / Dev Tools
Upstream returned invalid JSON
Upstream returned invalid JSON
APM, infra, logs, RUM, synthetics.
Collaborative design, FigJam, Dev Mode.
Feature flags, experiments, releases.
Error monitoring, performance, replays.
DevZone aggregates publicly available status data and refreshes every 30 seconds. Status indicators reflect each provider’s own machine-readable feed; for incident details and authoritative information, always consult the official status page linked on each card.
PyPI 90-day incident history
Last 90 days
97.78% incident-free
Quick facts about PyPI
- PyPI’s status page is hosted at status.python.org (Statuspage.io).
- PyPI is fronted by Fastly — Fastly outages frequently cause PyPI degradation even when the origin is healthy.
- pip installs are read-heavy; uploads happen on a separate path that can fail independently.
- Test PyPI (test.pypi.org) is tracked separately from the production index.
Frequently asked questions
Why is my pip install slow?
Slow pip installs during a PyPI degradation usually look like long stalls on "Downloading" or "Collecting". Check the dashboard above — if PyPI shows degraded, it’s a CDN/origin issue. If it’s green, try `pip install --index-url https://pypi.org/simple/` to bypass any local mirror.
Does PyPI have a status API?
Yes — https://status.python.org/api/v2/summary.json. Standard Statuspage schema.
How do I install Python packages while PyPI is down?
If you have wheels cached locally, `pip install --no-index --find-links=/path/to/wheels` works offline. For CI, use a mirror like Bytesafe, Artifactory, or your cloud provider’s package proxy — they cache PyPI and survive PyPI outages.
Why does Poetry fail when PyPI is healthy?
Poetry hits the simple JSON index at /simple/<package>/. Even when PyPI’s web UI is fine, the JSON index can lag. Try `poetry --no-cache install` to see if the actual download path is failing.