Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 223 for PIP (0.02 seconds)

  1. 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
    
    通常你只需要在建立虛擬環境後**執行一次**這個操作。
    
    ///
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Dec 09 22:39:33 GMT 2024
    - 20.7K bytes
    - Click Count (0)
  2. 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
    
    通常你只需要在创建虚拟环境后 **执行一次** 这个操作。
    
    ///
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Nov 08 19:23:26 GMT 2024
    - 21K bytes
    - Click Count (0)
  3. ci/devinfra/docker/windows/Dockerfile

    	Write-Host '  python --version'; C:\python312\python.exe --version; \
    	\
    	Write-Host 'Verifying pip install ...'; \
    	C:\python312\python.exe -m pip --version; \
    	\
    	Write-Host 'Removing ...'; \
    	Remove-Item C:\tmp\pyinstall.exe -Force; \
    	\
    	Write-Host 'Complete.';
    
    # Install pip packages.
    RUN python -m pip install --ignore-installed --force-reinstall --upgrade \
        setuptools packaging
    
    # Install JDK 21.
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Fri Jan 17 16:35:57 GMT 2025
    - 8.4K bytes
    - Click Count (0)
  4. 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.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Oct 11 17:48:49 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  5. docs/ru/docs/tutorial/index.md

    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    /// note | Примечание
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Sep 30 11:24:39 GMT 2025
    - 6.9K bytes
    - Click Count (0)
  6. .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:
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sun Dec 21 17:40:17 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  7. docs/pt/docs/tutorial/index.md

    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    /// note | Nota
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Nov 12 16:23:57 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  8. docs/de/docs/tutorial/index.md

    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    /// note | Hinweis
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Sep 20 15:10:09 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  9. 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
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Jul 15 11:55:55 GMT 2020
    - 1.2K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/tutorial/index.md

    確保你建立一個[虛擬環境](../virtual-environments.md){.internal-link target=_blank},啟用它,然後**安裝 FastAPI**:
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    /// note
    
    當你使用 `pip install "fastapi[standard]"` 安裝時,會包含一些預設的可選標準依賴項。
    
    如果你不想包含那些可選的依賴項,你可以使用 `pip install fastapi` 來安裝。
    
    ///
    
    ## 進階使用者指南
    
    還有一個**進階使用者指南**你可以稍後閱讀。
    
    **進階使用者指南**建立在這個教學之上,使用相同的概念,並教你一些額外的功能。
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Dec 17 21:16:46 GMT 2024
    - 5.9K bytes
    - Click Count (0)
Back to Top