Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for requirement (0.2 sec)

  1. docs/de/docs/contributing.md

    !!! note "Technische Details"
        Das geschieht nur, wenn Sie die Installation mit der enthaltenen `requirements.txt` durchführen, anstatt `pip install fastapi` direkt auszuführen.
    
        Das liegt daran, dass in der Datei `requirements.txt` die lokale Version von FastAPI mit der Option `-e` für die Installation im „editierbaren“ Modus markiert ist.
    
    ### Den Code formatieren
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 23:55:23 GMT 2024
    - 16.2K bytes
    - Viewed (0)
  2. docs/ru/docs/contributing.md

    ### pip
    
    После активации виртуального окружения, как было указано ранее, введите следующую команду:
    
    <div class="termy">
    
    ```console
    $ pip install -r requirements.txt
    
    ---> 100%
    ```
    
    </div>
    
    Это установит все необходимые зависимости в локальное окружение для Вашего локального FastAPI.
    
    #### Использование локального FastAPI
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Jun 11 21:38:15 GMT 2023
    - 22.5K bytes
    - Viewed (0)
  3. docs/pt/docs/contributing.md

    ### pip
    
    Após ativar o ambiente como descrito acima:
    
    <div class="termy">
    
    ```console
    $ pip install -r requirements.txt
    
    ---> 100%
    ```
    
    </div>
    
    Isso irá instalar todas as dependências e seu FastAPI local em seu ambiente local.
    
    #### Usando seu FastAPI local
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Jun 11 21:38:15 GMT 2023
    - 14.9K bytes
    - Viewed (0)
  4. docs/zh/docs/contributing.md

    这样,你不必再去重新"安装"你的本地版本即可测试所有更改。
    
    !!! note "技术细节"
        仅当你使用此项目中的 `requirements.txt` 安装而不是直接使用 `pip install fastapi` 安装时,才会发生这种情况。
    
        这是因为在 `requirements.txt` 中,本地的 FastAPI 是使用“可编辑” (`-e`)选项安装的
    
    ### 格式化
    
    你可以运行下面的脚本来格式化和清理所有代码:
    
    <div class="termy">
    
    ```console
    $ bash scripts/format.sh
    ```
    
    </div>
    
    它还会自动对所有导入代码进行排序整理。
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Mar 13 11:57:21 GMT 2024
    - 12.9K bytes
    - Viewed (0)
  5. docs/en/docs/contributing.md

    ### Install requirements using pip
    
    After activating the environment as described above:
    
    <div class="termy">
    
    ```console
    $ pip install -r requirements.txt
    
    ---> 100%
    ```
    
    </div>
    
    It will install all the dependencies and your local FastAPI in your local environment.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jan 11 17:42:43 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  6. docs/em/docs/contributing.md

        👉 ⚒ 💭 👈 🚥 👆 ⚙️ 📶 📋 ❎ 👈 📦, 👆 ⚙️ 1️⃣ ⚪️➡️ 👆 🇧🇿 🌐 &amp; 🚫 🙆 🎏 👈 💪 ❎ 🌐.
    
    ### 🐖
    
    ⏮️ 🔓 🌐 🔬 🔛:
    
    <div class="termy">
    
    ```console
    $ pip install -r requirements.txt
    
    ---> 100%
    ```
    
    </div>
    
    ⚫️ 🔜 ❎ 🌐 🔗 &amp; 👆 🇧🇿 FastAPI 👆 🇧🇿 🌐.
    
    #### ⚙️ 👆 🇧🇿 FastAPI
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Jun 11 21:38:15 GMT 2023
    - 11.4K bytes
    - Viewed (0)
  7. docs/ja/docs/contributing.md

        これにより、そのパッケージによってインストールされたターミナルのプログラム を使用する場合、ローカル環境のものを使用し、グローバルにインストールされたものは使用されなくなります。
    
    ### pip
    
    上記のように環境を有効化した後:
    
    <div class="termy">
    
    ```console
    $ pip install -r requirements.txt
    
    ---> 100%
    ```
    
    </div>
    
    これで、すべての依存関係とFastAPIを、ローカル環境にインストールします。
    
    #### ローカル環境でFastAPIを使う
    
    FastAPIをインポートして使用するPythonファイルを作成し、ローカル環境で実行すると、ローカルのFastAPIソースコードが使用されます。
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Jun 11 21:38:15 GMT 2023
    - 16.6K bytes
    - Viewed (0)
Back to top