Python Shebang(#!)中的/usr/bin/env原理(#!/usr/bin/env python3)(定位系统安装Python解释器的位置)

文章目录

  • Understanding the Principle of `/usr/bin/env` in Python Shebang(理解Python Shebang中的/usr/bin/env原理)
    • Introduction(简介)
    • Understanding /usr/bin/env(理解/usr/bin/env)
      • Defining /usr/bin/env(定义/usr/bin/env)
      • How /usr/bin/env Works(/usr/bin/env如何工作)
    • Advantages and Disadvantages of Using /usr/bin/env(使用/usr/bin/env的优缺点)
      • Pros(优点)
      • Cons(缺点)
    • Conclusion(结论)

Understanding the Principle of /usr/bin/env in Python Shebang(理解Python Shebang中的/usr/bin/env原理)

Introduction(简介)

A script file in Unix/Linux systems typically starts with a line known as the shebang (#!). This is a special directive(命令) that tells the system what interpreter to use to execute the rest of the file. For instance, Python scripts commonly start with #!/usr/bin/python3 or #!/usr/bin/env python3. The /usr/bin/env part may seem cryptic for beginners but understanding its principle is crucial in writing cross-platform Python scripts.
Unix/Linux系统中的脚本文件通常以称为shebang(#!)的行开始。这是一个特殊的指令,告诉系统应使用何种解释器来执行文件的其余部分。例如,Python脚本通常以#!/usr/bin/python3#!/usr/bin/env python3开始。对于初学者来说,/usr/bin/env部分可能看起来很难理解,但是理解其原理对于编写跨平台Python脚本至关重要。

shebang” 这个词在此上下文中的确是源于英语,但它的起源有些奇特。它源自 “#!” 符号的俚语称呼。这个符号在计算机领域中被称为
“hash bang”,其中 “hash” 是 “#” 符号的别名,而 “bang” 是 “!” 符号的别名。

然而,人们在口语中经常将 “hash bang” 说成 “shebang”,因为这样更易于发音。虽然这个词可能看起来有些奇怪,但它已经在计算机编程和 Unix/Linux 社区中被广泛接受并使用。

Understanding /usr/bin/env(理解/usr/bin/env)

Defining /usr/bin/env(定义/usr/bin/env)

In Unix and Unix-like operating systems, /usr/bin/env is a way to invoke a command available in the user’s $PATH. It’s essentially an executable that launches other programs, providing them with their execution environment. In the context of Python scripting, it helps in locating where Python interpreter is installed on the system.
在Unix和类Unix操作系统中,/usr/bin/env是一种调用用户$PATH中可用命令的方式。它本质上是一个可执行程序,用于启动其他程序,并为它们提供执行环境。在Python脚本的上下文中,它有助于定位系统上安装Python解释器的位置。

How /usr/bin/env Works(/usr/bin/env如何工作)

To understand how this works, we need to dissect(解剖、仔细研究) a typical shebang like #!/usr/bin/env python3.
要理解这个过程,我们需要剖析一个典型的shebang,例如#!/usr/bin/env python3

  1. #! - This is the shebang. It tells the system that this file can be run as a script and that the next part will specify(指定、明确规定) the interpreter.
    #! - 这是shebang。它告诉系统这个文件可以作为一个脚本运行,下一部分将指定解释器。

  2. /usr/bin/env - This is the environment setter(设置器). Instead of hardcoding the path to the Python interpreter, it tells the system to look for it in the user’s $PATH.
    /usr/bin/env - 这是环境设置器。它告诉系统在用户的$PATH中查找Python解释器,而不是硬编码Python解释器的路径。

  3. python3 - This is the program to be executed by /usr/bin/env, which in this case is the Python 3 interpreter.
    python3 - 这是由/usr/bin/env执行的程序,在这种情况下是Python 3解释器。

When a script with the above shebang is run, the system invokes /usr/bin/env with python3 as the argument, which in turn runs the Python 3 interpreter.
当运行带有上述shebang的脚本时,系统会用python3作为参数调用/usr/bin/env,然后再运行Python 3解释器。

#!/usr/bin/env python3
print("Hello, World!")

The advantage of this method is that it allows the script to be run on any system, regardless of where Python is installed. It enhances script portability(可移植性、便携性) across different Unix/Linux systems.
这种方法的优点是它允许在任何系统上运行脚本,无论Python安装在哪里。它增强了脚本在不同Unix/Linux系统之间的可移植性。

Advantages and Disadvantages of Using /usr/bin/env(使用/usr/bin/env的优缺点)

Pros(优点)

  • Portability: As already mentioned, using /usr/bin/env increases the portability of scripts. If Python interpreter is in the $PATH, the script will execute, irrespective(不受……影响的) of the actual location of the Python binary.
    可移植性:如前所述,使用/usr/bin/env增加了脚本的可移植性。如果Python解释器在$PATH中,无论Python二进制文件的实际位置在哪里,脚本都会执行。

  • Flexibility: Scripts can be written once and used across multiple environments without changes. This is especially useful in large projects with diverse(多种多样的) deployment environments.
    灵活性:脚本可以只编写一次,而在多个环境中使用,无需更改。这在部署环境多样的大型项目中特别有用。

Cons(缺点)

  • Security Risk: Since /usr/bin/env uses the user’s $PATH, a malicious(恶意的) user could potentially insert a program named python3 earlier in the $PATH and trick(欺骗) the script into running that instead.
    安全风险:由于/usr/bin/env使用用户的$PATH,恶意用户可能会在$PATH较前的位置插入一个名为python3的程序,并欺骗脚本运行那个程序。

  • Performance: There’s a slight(轻微的) performance(性能) cost as an additional process needs to be invoked (i.e., /usr/bin/env) before invoking the Python interpreter.
    性能:在调用Python解释器之前需要调用一个额外的进程(即/usr/bin/env),因此有一点性能损耗。

Despite these drawbacks(缺点), the benefits of /usr/bin/env often outweigh(大于、胜过) the risks, especially in scenarios(场景、方案) where cross-platform compatibility(兼容性) is required.
尽管有这些缺点,但/usr/bin/env的好处通常超过风险,尤其是在需要跨平台兼容性的场景中。

Conclusion(结论)

Understanding the role of /usr/bin/env in the shebang of Python scripts is essential for developing portable(可移植的), flexible(灵活的) code. While there are potential security risks and minor performance costs, the benefits make it a popular choice in a variety of scripting situations. The ability to use the same script across different environments without modifications adds significant value(增加了显著的价值), making it a staple(基础、主要部分) in modern Python programming.
理解Python脚本的shebang中/usr/bin/env的作用对于开发可移植、灵活的代码至关重要。虽然存在潜在的安全风险和轻微的性能损失,但其好处使其在各种脚本场景中成为热门选择。在不同环境中使用相同的脚本而无需修改的能力增加了显著的价值,使其成为现代Python编程的基础。

在日常对话或非正式的情况下,人们可能会简化这个读法。然而,具体的简化方式可能会因人而异,也取决于听众是否能理解简化后的表达。

例如,有些人可能会将 /usr/bin/env 读作 “user bin env”,省去了斜杠。但请注意,这并不是一种标准的读法,如果您的听众不熟悉文件系统路径,他们可能会感到困惑。

总的来说,最标准和清晰的读法还是 “slash usr slash bin slash env”。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/722520.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Lattice FPGA 开发】IP核的调用

本文介绍Diamond开发软件进行IP核调用与对应官方文档查找方法。 文章目录 1. IP核的调用1.1 IPexpress调用IP核1.2 Clarity Designer调用IP核 2. IP核相关文档查找2.1 方法一2.2 方法二2.3 方法三 3 问题 1. IP核的调用 Diamond软件中,根据所选目标FPGA器件型号的…

Golang embed 库全面解析:从基础到高级应用

Golang embed 库全面解析:从基础到高级应用 引言Golang的 embed:简化资源管理提升可移植性与便利性适用场景的拓展 embed 库的基本概念embed 库的工作原理使用 embed 的基本语法访问嵌入资源的方法embed 的限制 如何使用 embed嵌入单个文件嵌入整个目录结…

zephyr学习笔记

zephyr内核对象学习 定时器 类似linux的定时器, 可以分别设置第一次到期时间和后续的周期触发时间, 可以注册到期回调和停止回调 还有一个计数状态,用于标记timer到期了多少次 duration:设定timer第一次到期的时间。 period: …

keycloak-鉴权springboot

一、环境描述 keycloak鉴权springboot的方式,此处简单介绍,springboot官方也提供了demo https://github.com/keycloak/keycloak-quickstarts/tree/latest/spring/rest-authz-resource-server 以及文档说明 Securing Applications and Services Guide…

华为OD机试真题-提取字符串中的最长数学表达式并计算-2023年OD统一考试(C卷)---Python3--开源

题目: 考察内容: 滑动窗口 eval() 思路:先把合法字符提取出来;再从合法字符提取出合法表达式;再获取最长字符串,并运算最后结果。 代码: """ analyze: 如果没有,返…

数字逻辑与计算机组成

冯诺依曼计算机 计算机结构 计算机特点 1.采用二进制 2.程序存储 2.由五大部件组成计算机系统:运算器、存储器、控制器、输入设备和输出设备 计算机硬件系统的层次 中央处理器(CPU):运算器 控制器 计算机主机:…

CAN总线位时序的介绍

CAN控制器根据两根线上的电位差来判断总线电平。总线电平分为显性电平和隐性电平,二者必居其一。发送方通过使总线电平发生变化,将消息发送给接收方。 显性电平对应逻辑 0,CAN_H 和 CAN_L 之差为 2.5V 左右。而隐性电平对应逻辑 1&#xff0c…

阿里云搭建私有docker仓库(学习)

搭建私有云仓库 首先登录后直接在页面搜索栏中搜索“容器镜像服务” 进入后直接选择个人版(可以免费使用) 选择镜像仓库后创建一个镜像仓库 在创建仓库之前我们先创建一个命名空间 然后可以再创建我们的仓库,可以与我们的github账号进行关联…

开发知识点-Python-爬虫

爬虫 scrapybeautifulsoupfind_all find祖先/父节点兄弟节点nextpreviousCSS选择器属性值 attrsselect 后 class 正则使用字符串来描述、匹配一系列符合某个规则的字符串组成元字符使用grep匹配正则组与捕获断言与标记条件匹配正则表达式的标志 特定中文 匹配 scrapy scrapy内…

011-闭包

闭包 1、概念2、闭包应用防抖&节流 1、概念 闭包:就是能够读取其他函数内部变量的函数。 function fn1() {const num 100;return function(num1) {return num num1; // 该函数 使用了 父作用域里面的 num,所以被称为闭包} }const sumFn fn1();…

【C语言】指针超级无敌金刚霹雳进阶(但不难,还是基础)

点击这里访问我的博客主页~~ 对指针概念还不太清楚的点击这里访问上一篇指针初阶2.0 上上篇指针初阶1.0 谢谢各位大佬的支持咯 今天我们一起来学习指针进阶内容 指针进阶 一、指针变量1、字符指针变量2、数组指针变量①数组指针变量的定义②数组指针变量的初始化 3、函数指…

C++面试干货---带你梳理常考的面试题(二)

顾得泉:个人主页 个人专栏:《Linux操作系统》 《C从入门到精通》 《LeedCode刷题》 键盘敲烂,年薪百万! 1.struct 和 class 区别 1.默认访问权限:struct中的成员默认为public,而class中的成员默认为priv…

ClickHouse安装、简介及使用

文章目录 一、简介1、什么是ClickHouse2、什么是OLAP3、列式存储特性 二、安装1、官方文档2、docker安装3、核心目录4、clickhouse-client使用 参考资料 一、简介 1、什么是ClickHouse ClickHouse是一个用于联机分析(OLAP)的列式数据库管理系统(DBMS)。 官网:htt…

网上搞钱的方法你知道几个?盘点3个普通人都可操作的赚钱项目

项目一,微头条 我们可以借助精彩的文章,分享知识、心得和见解,吸引更多的读者关注并获得更多的点赞与评论。关键字的巧妙运用将使你的文章更具吸引力和影响力,同时也会为你带来更多的关注度和阅读量。我们写微头条文章的时候&…

2024.3.5每日一题

LeetCode 到达目的地的方案数 题目链接:1976. 到达目的地的方案数 - 力扣(LeetCode) 题目描述 你在一个城市里,城市由 n 个路口组成,路口编号为 0 到 n - 1 ,某些路口之间有 双向 道路。输入保证你可以…

LeetCode 2673. 使二叉树所有路径值相等的最小代价【贪心】1917

本文属于「征服LeetCode」系列文章之一,这一系列正式开始于2021/08/12。由于LeetCode上部分题目有锁,本系列将至少持续到刷完所有无锁题之日为止;由于LeetCode还在不断地创建新题,本系列的终止日期可能是永远。在这一系列刷题文章…

Android开发第三方库PhotoView的使用

PhotoView 是一个用于Android的第三方库,它扩展了Android的ImageView,提供了诸如捏合缩放、平移和双击缩放等交互功能。 多点触控缩放:用户可以使用两个手指捏合来放大或缩小图片。平滑滚动:当图片被放大后,用户可以拖…

python三剑客之一——Numpy

温故而知新,借着工作需要用到Numpy的机会重新学习一遍Numpy。 Numpy是一个运行速度非常快的数学库,主要用于数组计算,包含如下: 一个强大的N维数组对象ndarray【Nd(Dimension维度)array】 广播功能函数 整…

JAVA学习-类和接口.匿名类

Java类和接口是面向对象编程的基本概念,类用来描述对象的属性和行为,接口定义一组方法的规范。匿名类是一种特殊的类,它没有名字,在使用时直接定义和实例化。 Java中常见的类和接口有很多,包括基本类(如Str…

2024.3.5

作业1、使用select实现tcp服务器端&#xff0c;poll实现tcp客户端 服务器端&#xff1a; #include <myhead.h> #define SER_IP "192.168.199.131" //服务端IP #define SER_PORT 8888 //服务端端口号int main(int argc, const char *argv[])…