About 37,600 results
Open links in new tab
  1. fastapi · PyPI

    Apr 16, 2026 · If you want to install FastAPI with the standard dependencies but without the fastapi-cloud-cli, you can install with pip install "fastapi[standard-no-fastapi-cloud-cli]".

  2. Tutorial - User Guide - FastAPI

    When you install with pip install "fastapi[standard]" it comes with some default optional standard dependencies, including fastapi-cloud-cli, which allows you to deploy to FastAPI Cloud. If you don't …

  3. 3.2. FastAPI Install — Python - from None to AI

    Dec 29, 2025 · # Install uvicorn with "Cython-based" dependencies (where possible) and other "optional extras" $ python -m pip install 'uvicorn[standard]'

  4. FastAPI

    If you want to install FastAPI with the standard dependencies but without the fastapi-cloud-cli, you can install with pip install "fastapi[standard-no-fastapi-cloud-cli]".

  5. FastAPI 安装 - 菜鸟教程

    安装 Uvicorn FastAPI 是一个 ASGI 框架,需要一个 ASGI 服务器来运行。 最常用的是 Uvicorn: $ pip install "uvicorn[standard]" [standard] 会安装 uvloop(高性能事件循环)和 httptools(高性能 HTTP 解 …

  6. How to Install FastAPI in Python - PyTutorial

    Mar 25, 2025 · Learn how to install FastAPI in Python step by step. This guide covers setup, creating a simple API, and running it with Uvicorn.

  7. Install Fastapi And Run Your First Fastapi Server On Windows

    Jul 23, 2025 · FastAPI is a modern, fast web framework for building APIs with Python 3.7+ based on standard Python-type hints. In this article, we'll walk through the process of installing FastAPI and …

  8. Get Started With FastAPI - Real Python

    Sep 22, 2025 · Unlike many Python packages that you can install with just pip install <package>, FastAPI’s installation approach has evolved to provide better out-of-the-box functionality. …

  9. What does the “[standard]” in “pip install fastapi[standard ...

    May 30, 2025 · In Python’s pip installation command, syntax like fastapi[standard] means installing the main package (fastapi) along with its optional dependencies (standard). This is enabled by the...

  10. How to Install and Set Up FastAPI: A Step-by-Step Guide - AliTech

    May 4, 2024 · Install FastAPI: Once you have Python installed, you can install FastAPI using pip, the Python package manager. Open your terminal or command prompt and run the following command: …