- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 274 for pip (0.01 seconds)
-
ci/official/utilities/code_check_full.bats
# included in the pip package. # (comm: Column 1 is left, Column 2 is right, Column 3 is shared lines) comm -2 -3 $BATS_TEST_TMPDIR/required_deps $BATS_TEST_TMPDIR/pip_deps > $BATS_TEST_TMPDIR/missing_deps || true if [[ -s $BATS_TEST_TMPDIR/missing_deps ]]; then cat <<EOF One or more test dependencies are not in the pip package.
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Jan 28 22:41:17 GMT 2026 - 13.6K bytes - Click Count (0) -
ci/official/containers/ml_build/setup.python.sh
ln -sf /usr/include/$VERSION /usr/local/include/$VERSION fi # Install pip wget --retry-connrefused --waitretry=1 --read-timeout=20 --timeout=15 --tries=5 https://bootstrap.pypa.io/get-pip.py /usr/bin/$VERSION get-pip.py /usr/bin/$VERSION -m pip install --no-cache-dir --upgrade pip /usr/bin/$VERSION -m pip install -U setuptools # For Python 3.13t, do not install twine as it does not have pre-built wheels
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Oct 30 20:25:44 GMT 2025 - 2.5K bytes - Click Count (0) -
ci/official/utilities/rename_and_verify_wheels.sh
if [[ "$TFCI_PYTHON_VERSION" == "3.13" ]]; then "$python" -m pip install numpy==1.26.4 else "$python" -m pip install numpy==1.26.0 fi fi if [[ "$TFCI_BAZEL_COMMON_ARGS" =~ gpu|cuda ]]; then echo "Checking to make sure tensorflow[and-cuda] is installable..." "$python" -m pip install "$(echo *.whl)[and-cuda]" $TFCI_PYTHON_VERIFY_PIP_INSTALL_ARGS else "$python" -m pip install *.whl $TFCI_PYTHON_VERIFY_PIP_INSTALL_ARGS fi
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Mon Sep 22 21:39:32 GMT 2025 - 4.4K bytes - Click Count (0) -
docs/en/docs/virtual-environments.md
//// ## Upgrade `pip` { #upgrade-pip } /// tip If you use [`uv`](https://github.com/astral-sh/uv) you would use it to install things instead of `pip`, so you don't need to upgrade `pip`. 😎 /// If you are using `pip` to install packages (it comes by default with Python), you should **upgrade** it to the latest version.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 22.1K bytes - Click Count (0) -
docs/ja/docs/virtual-environments.md
//// ## `pip` をアップグレードする { #upgrade-pip } /// tip | 豆知識 もし [`uv`](https://github.com/astral-sh/uv) を使用している場合は、 `pip` の代わりに `uv` を使ってインストールを行うため、 `pip` をアップグレードする必要はありません 😎。 /// もしパッケージのインストールに `pip`(Pythonに標準で付属しています)を使用しているなら、 `pip` を最新バージョンに**アップグレード**しましょう。 パッケージのインストール中に発生する想定外のエラーの多くは、最初に `pip` をアップグレードしておくだけで解決されます。 /// tip | 豆知識Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 28.5K bytes - Click Count (0) -
docs/zh/docs/virtual-environments.md
<div class="termy"> ```console $ python -m pip install --upgrade pip ---> 100% ``` </div> /// tip | 提示 有时在尝试升级 pip 时,你可能会遇到 **`No module named pip`** 错误。 如果发生这种情况,使用下面的命令来安装并升级 pip: <div class="termy"> ```console $ python -m ensurepip --upgrade ---> 100% ``` </div> 该命令会在尚未安装 pip 时进行安装,并确保安装的 pip 版本不早于 `ensurepip` 提供的版本。 ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 21.4K bytes - Click Count (0) -
ci/devinfra/docker/windows2022/Dockerfile
\ Write-Host 'Verifying pip install...'; \ & $installDir\python.exe -m pip --version; \ \ Write-Host 'Updating pip...'; \ & $installDir\python.exe -m pip install --upgrade pip; \ \ Write-Host 'Installing/updating packages...'; \ & $installDir\python.exe -m pip install --upgrade setuptools packaging; \ \Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Mar 04 19:50:57 GMT 2026 - 10.4K bytes - Click Count (0) -
.github/workflows/test-redistribute.yml
- name: Install build dependencies run: pip install build - name: Build source distribution run: python -m build --sdist - name: Decompress source distribution run: | cd dist tar xvf fastapi*.tar.gz - name: Install test dependencies run: | cd dist/fastapi*/ pip install --group tests --editable .[all]Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 11 12:33:49 GMT 2026 - 1.6K bytes - Click Count (0) -
.github/workflows/pylint-presubmit.yml
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 with: python-version: "3.9" - name: Install Python dependencies run: | python -m pip install --upgrade pip pip install pylint==2.13.9 numpy wheel - name: Run PyLint on changed files run: |Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Jan 01 08:09:03 GMT 2026 - 1.7K bytes - Click Count (0) -
docs/ko/docs/tutorial/index.md
<div class="termy"> ```console $ pip install "fastapi[standard]" ---> 100% ``` </div> /// note | 참고 `pip install "fastapi[standard]"`로 설치하면 `fastapi-cloud-cli`를 포함한 몇 가지 기본 선택적 standard 의존성이 함께 설치되며, 이를 사용해 [FastAPI Cloud](https://fastapicloud.com)에 배포할 수 있습니다. 이러한 선택적 의존성이 필요 없다면 `pip install fastapi`로 대신 설치할 수 있습니다.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 5.7K bytes - Click Count (0)