Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for macos (0.14 sec)

  1. docs/de/docs/advanced/settings.md

    Sie können Umgebungsvariablen in der Shell erstellen und verwenden, ohne Python zu benötigen:
    
    === "Linux, macOS, Windows Bash"
    
        <div class="termy">
    
        ```console
        // Sie könnten eine Umgebungsvariable MY_NAME erstellen mittels
        $ export MY_NAME="Wade Wilson"
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 20:17:14 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/settings.md

    You can create and use environment variables in the shell, without needing Python:
    
    === "Linux, macOS, Windows Bash"
    
        <div class="termy">
    
        ```console
        // You could create an env var MY_NAME with
        $ export MY_NAME="Wade Wilson"
    
        // Then you could use it with other programs, like
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  3. docs/zh/docs/advanced/settings.md

    因此,通常会将它们提供为由应用程序读取的环境变量。
    
    ## 环境变量
    
    !!! tip
        如果您已经知道什么是"环境变量"以及如何使用它们,请随意跳到下面的下一节。
    
    环境变量(也称为"env var")是一种存在于 Python 代码之外、存在于操作系统中的变量,可以被您的 Python 代码(或其他程序)读取。
    
    您可以在 shell 中创建和使用环境变量,而无需使用 Python:
    
    === "Linux、macOS、Windows Bash"
    
        <div class="termy">
    
        ```console
        // 您可以创建一个名为 MY_NAME 的环境变量
        $ export MY_NAME="Wade Wilson"
    
        // 然后您可以与其他程序一起使用它,例如
        $ echo "Hello $MY_NAME"
    
        Hello Wade Wilson
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 13.9K bytes
    - Viewed (0)
Back to top