Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 170 for pip (0.13 sec)

  1. ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc

    test:pip_venv --action_env PYTHON_LIB_PATH="/bazel_pip/lib/python3/site-packages"
    test:pip_venv --python_path="/bazel_pip/bin/python3"
    test:pip_venv --define=no_tensorflow_py_deps=true
    test:pip --config=pip_venv
    # Yes, we don't exclude the gpu tests on pip for some reason.
    test:pip_filters --test_tag_filters=-nopip,-no_pip,-no_oss,-oss_serial,-benchmark-test,-v1only,-no_aarch64,-no_oss_py38,-no_oss_py39,-no_oss_py310
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Nov 21 12:25:39 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

    //tensorflow/lite/python:interpreter_test.py
    EOF
    
      # Get the full list of files and targets which get included into the pip
      # package
      bazel query --keep_going 'deps(//tensorflow/tools/pip_package:build_pip_package)' | sort -u > $BATS_TEST_TMPDIR/pip_deps
      # Find all Python py_test targets not tagged "no_pip" or "manual", excluding
      # any targets in ignored packages. Combine this list of targets into a bazel
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 12.7K bytes
    - Viewed (0)
  3. ci/official/requirements_updater/WORKSPACE

    py_repositories()
    
    load("@rules_python//python:repositories.bzl", "python_register_multi_toolchains")  # buildifier: disable=same-origin-load
    load("@rules_python//python/pip_install:repositories.bzl", "pip_install_dependencies")
    
    default_python_version = "3.10"
    
    load(
        "//:updater_config_repository.bzl",
        "updater_config_repository",  # @unused
    )
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Apr 05 22:12:56 GMT 2024
    - 1.6K bytes
    - Viewed (1)
  4. docs/pt/docs/contributing.md

        <div class="termy">
    
        ```console
        $ which pip
    
        some/directory/fastapi/env/bin/pip
        ```
    
        </div>
    
    === "Windows PowerShell"
    
        <div class="termy">
    
        ```console
        $ Get-Command pip
    
        some/directory/fastapi/env/bin/pip
        ```
    
        </div>
    
    Se ele exibir o binรกrio `pip` em `env/bin/pip` entรฃo funcionou. ๐ŸŽ‰
    
    
    
    !!! tip
    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)
  5. docs/em/docs/tutorial/index.md

    <div class="termy">
    
    ```console
    $ pip install "fastapi[all]"
    
    ---> 100%
    ```
    
    </div>
    
    ...๐Ÿ‘ˆ ๐Ÿ”Œ `uvicorn`, ๐Ÿ‘ˆ ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ ๐Ÿ’ฝ ๐Ÿ‘ˆ ๐Ÿƒ ๐Ÿ‘† ๐Ÿ“Ÿ.
    
    !!! note
        ๐Ÿ‘† ๐Ÿ’ช โŽ โšซ๏ธ ๐Ÿ• ๐Ÿ•.
    
        ๐Ÿ‘‰ โšซ๏ธโ” ๐Ÿ‘† ๐Ÿ”œ ๐ŸŽฒ ๐Ÿ• ๐Ÿ‘† ๐Ÿ’š ๐Ÿ› ๏ธ ๐Ÿ‘† ๐Ÿˆธ ๐Ÿญ:
    
        ```
        pip install fastapi
        ```
    
        โŽ `uvicorn` ๐Ÿ‘ท ๐Ÿ’ฝ:
    
        ```
        pip install "uvicorn[standard]"
        ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Jun 24 14:47:15 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  6. ci/official/requirements_updater/README.md

    3) In the `BUILD.bazel` file, add a load statement for the new version, e.g.
    
       ```
          load("@python//3.11:defs.bzl",
               compile_pip_requirements_3_11 = "compile_pip_requirements")
       ```
    
       Add a new entry for the loaded `compile_pip_requirements`, e.g.
    
       ```
          compile_pip_requirements_3_11(
              name = "requirements_3_11",
              extra_args = ["--allow-unsafe"],
              requirements_in = "requirements.in",
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/devel.usertools/test.requirements.txt

    # Test dependencies for pip tests
    grpcio ~= 1.42.0
    portpicker ~= 1.5.2
    scipy ~= 1.7.3
    jax ~= 0.2.26
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 117 bytes
    - Viewed (0)
  8. ci/official/utilities/code_check_full.bats

    //tensorflow/lite/python:interpreter_test.py
    EOF
    
      # Get the full list of files and targets which get included into the pip
      # package
      bazel cquery --keep_going 'deps(//tensorflow/tools/pip_package:wheel)' | sort -u > $BATS_TEST_TMPDIR/pip_deps
      # Find all Python py_test targets not tagged "no_pip" or "manual", excluding
      # any targets in ignored packages. Combine this list of targets into a bazel
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Mar 06 21:54:13 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  9. docs/zh/docs/contributing.md

        <div class="termy">
    
        ```console
        $ which pip
    
        some/directory/fastapi/env/bin/pip
        ```
    
        </div>
    
    === "Windows PowerShell"
    
        <div class="termy">
    
        ```console
        $ Get-Command pip
    
        some/directory/fastapi/env/bin/pip
        ```
    
        </div>
    
    ๅฆ‚ๆžœๆ˜พ็คบ `pip` ็จ‹ๅบๆ–‡ไปถไฝไบŽ `env/bin/pip` ๅˆ™่ฏดๆ˜Žๆฟ€ๆดปๆˆๅŠŸใ€‚ ๐ŸŽ‰
    
    ็กฎไฟ่™šๆ‹Ÿ็Žฏๅขƒไธญ็š„ pip ็‰ˆๆœฌๆ˜ฏๆœ€ๆ–ฐ็š„๏ผŒไปฅ้ฟๅ…ๅŽ็ปญๆญฅ้ชคๅ‡บ็Žฐ้”™่ฏฏ๏ผš
    
    <div class="termy">
    
    ```console
    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)
  10. docs/id/docs/tutorial/index.md

        Hal ini mungkin yang akan kamu lakukan ketika kamu hendak menyebarkan (men-deploy) aplikasimu ke tahap produksi:
    
        ```
        pip install fastapi
        ```
    
        Juga install `uvicorn` untuk menjalankan server"
    
        ```
        pip install "uvicorn[standard]"
        ```
    
        Dan demikian juga untuk pilihan dependensi yang hendak kamu gunakan.
    
    ## Pedoman Pengguna Lanjutan
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 2.9K bytes
    - Viewed (0)
Back to top