Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for venv (0.02 sec)

  1. docs/en/docs/virtual-environments.md

    ///
    
    //// tab | `venv`
    
    To create a virtual environment, you can use the `venv` module that comes with Python.
    
    <div class="termy">
    
    ```console
    $ python -m venv .venv
    ```
    
    </div>
    
    /// details | What that command means
    
    * `python`: use the program called `python`
    * `-m`: call a module as a script, we'll tell it which module next
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  2. ci/official/utilities/rename_and_verify_wheels.sh

    venv_dir=$(mktemp -d)
    if [[ $(uname -s) != MSYS_NT* ]]; then
      "python${TFCI_PYTHON_VERSION}" -m venv "$venv_dir"
      python="$venv_dir/bin/python3"
    else
      # When using the Linux-like path, venv creation quietly fails, which is
      # why it's converted here.
      venv_dir=$(cygpath -m $venv_dir)
      "/c/python${TFCI_PYTHON_VERSION}/python.exe" -m venv "$venv_dir"
      python="$venv_dir/Scripts/python.exe"
    fi
    
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Apr 25 00:22:38 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  3. docs/ko/docs/virtual-environments.md

    ///
    
    //// tab | `venv`
    
    Python 표준 라이브러리에 포함된 venv 모듈을 사용해 가상 환경을 생성할 수 있습니다.
    
    <div class="termy">
    
    ```console
    $ python -m venv .venv
    ```
    
    </div>
    
    /// details | 명령어 상세 설명
    
    * `python`: `python` 프로그램을 실행합니다.
    * `-m`: 특정 모듈을 스크립트처럼 실행합니다. 대상 모듈을 바로 뒤에 지정합니다.
    * `venv`: Python 표준 라이브러리에 포함된 `venv` 모듈을 실행합니다.
    * `.venv`: 가상 환경을 `.venv` 디렉터리에 생성합니다.
    
    ///
    
    ////
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri May 30 13:10:41 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  4. docs/ja/docs/virtual-environments.md

    ///
    
    //// tab | `venv`
    
    仮想環境を作成するには、Pythonに付属している `venv` モジュールを使用できます。
    
    <div class="termy">
    
    ```console
    $ python -m venv .venv
    ```
    
    </div>
    
    /// details | このコマンドの意味
    
    - `python` : `python` というプログラムを呼び出します
    - `-m` : モジュールをスクリプトとして呼び出します。どのモジュールを呼び出すのか、この次に指定します
    - `venv` : 通常Pythonに付随してインストールされる `venv`モジュールを使用します
    - `.venv` : 仮想環境を`.venv`という新しいディレクトリに作成します
    
    ///
    
    ////
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Wed Mar 19 12:22:33 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  5. ci/official/containers/ml_build/setup.python.sh

    $VERSION
    EOF
    elif [[ ${VERSION} == "python3.14" || ${VERSION} == "python3.13" || ${VERSION} == "python3.12" ]]; then
      cat >pythons.txt <<EOF
    $VERSION
    $VERSION-dev
    $VERSION-venv
    EOF
    else
      cat >pythons.txt <<EOF
    $VERSION
    $VERSION-dev
    $VERSION-venv
    $VERSION-distutils
    EOF
    fi
    
    /setup.packages.sh pythons.txt
    
    # Re-link pyconfig.h from x86_64-linux-gnu into the devtoolset directory
    # for any Python version present
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Aug 01 02:44:57 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  6. ci/official/containers/ml_build_arm64/setup.python.sh

      cat >pythons.txt <<EOF
    $VERSION
    EOF
    elif [[ ${VERSION} == "python3.13" ]]; then
      cat >pythons.txt <<EOF
    $VERSION
    $VERSION-dev
    $VERSION-venv
    EOF
    else
      cat >pythons.txt <<EOF
    $VERSION
    $VERSION-dev
    $VERSION-venv
    EOF
    fi
    
    if [[ ${VERSION} == "python3.14" ]]; then
      if [[ ! -d Python-3.14.0rc1 ]]; then
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Aug 01 19:14:43 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  7. ci/official/containers/ml_build_arm64/Dockerfile

    RUN groupadd -g 1001 buildslave && useradd -m -u 1001 -g buildslave buildslave
    RUN mkdir -p /tf/venv
    RUN chown -R buildslave:buildslave /tf
    
    # All lines past this point are reset when $CACHEBUSTER is set. We need this
    # for Python specifically because we install some nightly packages which are
    # likely to change daily.
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Aug 01 02:44:57 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  8. cmd/common-main.go

    	var legacyCredentials bool
    	//nolint:gocritic
    	if env.IsSet(config.EnvRootUser) && env.IsSet(config.EnvRootPassword) {
    		user = env.Get(config.EnvRootUser, "")
    		password = env.Get(config.EnvRootPassword, "")
    	} else if env.IsSet(config.EnvAccessKey) && env.IsSet(config.EnvSecretKey) {
    		user = env.Get(config.EnvAccessKey, "")
    		password = env.Get(config.EnvSecretKey, "")
    		legacyCredentials = true
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  9. docs/en/docs/release-notes.md

    * Update log style in README.md for GitHub Markdown compatibility. PR [#1200](https://github.com/tiangolo/fastapi/pull/1200) by [#geekgao](https://github.com/geekgao).
    * Add Python venv `env` to `.gitignore`. PR [#1212](https://github.com/tiangolo/fastapi/pull/1212) by [@cassiobotaro](https://github.com/cassiobotaro).
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 12:48:45 UTC 2025
    - 544.1K bytes
    - Viewed (0)
  10. Makefile

    	@env bash $(PWD)/docs/iam/policies/pbac-tests.sh
    
    test-decom: install-race
    	@echo "Running minio decom tests"
    	@env bash $(PWD)/docs/distributed/decom.sh
    	@env bash $(PWD)/docs/distributed/decom-encrypted.sh
    	@env bash $(PWD)/docs/distributed/decom-encrypted-sse-s3.sh
    	@env bash $(PWD)/docs/distributed/decom-compressed-sse-s3.sh
    	@env bash $(PWD)/docs/distributed/decom-encrypted-kes.sh
    
    test-versioning: install-race
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Apr 27 00:44:22 UTC 2025
    - 11.2K bytes
    - Viewed (0)
Back to top