Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 195 for pip (0.01 sec)

  1. docs/en/docs/tutorial/index.md

    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    /// note
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  2. docs/es/docs/tutorial/index.md

    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    /// note | Nota
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:33:45 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  3. docs/zh-hant/docs/virtual-environments.md

    ////
    
    ## 升級 `pip`
    
    /// tip
    
    如果你使用 <a href="https://github.com/astral-sh/uv" class="external-link" target="_blank">`uv`</a> 來安裝內容,而不是 `pip`,那麼你就不需要升級 `pip`。😎
    
    ///
    
    如果你使用 `pip` 來安裝套件(它是 Python 的預設元件),你應該將它**升級**到最新版本。
    
    在安裝套件時出現的許多奇怪的錯誤都可以透過先升級 `pip` 來解決。
    
    /// tip
    
    通常你只需要在建立虛擬環境後**執行一次**這個操作。
    
    ///
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Dec 09 22:39:33 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. docs/zh/docs/virtual-environments.md

    ////
    
    ## 升级 `pip`
    
    /// tip
    
    如果你使用 <a href="https://github.com/astral-sh/uv" class="external-link" target="_blank">`uv`</a> 来安装内容,而不是 `pip`,那么你就不需要升级 `pip`。😎
    
    ///
    
    如果你使用 `pip` 来安装包(它是 Python 的默认组件),你应该将它 **升级** 到最新版本。
    
    在安装包时出现的许多奇怪的错误都可以通过先升级 `pip` 来解决。
    
    /// tip
    
    通常你只需要在创建虚拟环境后 **执行一次** 这个操作。
    
    ///
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Nov 08 19:23:26 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. docs/ko/docs/tutorial/index.md

    <div class="termy">
    
    ```console
    $ pip install "fastapi[all]"
    
    ---> 100%
    ```
    
    </div>
    
    ...이는 코드를 실행하는 서버로 사용할 수 있는 `uvicorn` 또한 포함하고 있습니다.
    
    /// note | 참고
    
    부분적으로 설치할 수도 있습니다.
    
    애플리케이션을 운영 환경에 배포하려는 경우 다음과 같이 합니다:
    
    ```
    pip install fastapi
    ```
    
    추가로 서버 역할을 하는 `uvicorn`을 설치합니다:
    
    ```
    pip install uvicorn
    ```
    
    사용하려는 각 선택적인 의존성에 대해서도 동일합니다.
    
    ///
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/index.md

    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    /// note | Nota
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Nov 12 16:23:57 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  7. docs/ja/docs/virtual-environments.md

    ////
    
    ## `pip` をアップグレードする
    
    /// tip | 豆知識
    
    もし <a href="https://github.com/astral-sh/uv" class="external-link" target="_blank">`uv`</a> を使用している場合は、 `pip` の代わりに `uv` を使ってインストールを行うため、 `pip` をアップグレードする必要はありません 😎。
    
    ///
    
    もしパッケージのインストールに `pip`(Pythonに標準で付属しています)を使用しているなら、 `pip` を最新バージョンに**アップグレード**しましょう。
    
    パッケージのインストール中に発生する想定外のエラーの多くは、最初に `pip` をアップグレードしておくだけで解決されます。
    
    /// tip | 豆知識
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Mar 19 12:22:33 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  8. docs/sts/.gitignore

    MANIFEST
    
    # PyInstaller
    #  Usually these files are written by a python script from a template
    #  before PyInstaller builds the exe, so as to inject date/other infos into it.
    *.manifest
    *.spec
    
    # Installer logs
    pip-log.txt
    pip-delete-this-directory.txt
    
    # Unit test / coverage reports
    htmlcov/
    .tox/
    .coverage
    .coverage.*
    .cache
    nosetests.xml
    coverage.xml
    *.cover
    .hypothesis/
    .pytest_cache/
    
    # Translations
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Wed Jul 15 11:55:55 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  9. .github/workflows/build-docs.yml

            with:
              version: "0.4.15"
              enable-cache: true
              cache-dependency-glob: |
                requirements**.txt
                pyproject.toml
          - name: Install docs extras
            run: uv pip install -r requirements-docs.txt
          - name: Export Language Codes
            id: show-langs
            run: |
              echo "langs=$(python ./scripts/docs.py langs-json)" >> $GITHUB_OUTPUT
    
      build-docs:
        needs:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Dec 21 17:40:17 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  10. docs/fr/docs/deployment/manually.md

    //// tab | Uvicorn
    
    * <a href="https://www.uvicorn.dev/" class="external-link" target="_blank">Uvicorn</a>, un serveur ASGI rapide comme l'éclair, basé sur uvloop et httptools.
    
    <div class="termy">
    
    ```console
    $ pip install "uvicorn[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    /// tip | Astuce
    
    En ajoutant `standard`, Uvicorn va installer et utiliser quelques dépendances supplémentaires recommandées.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Oct 11 17:48:49 UTC 2025
    - 5.3K bytes
    - Viewed (0)
Back to top