RustPython介绍
同CPython,Jpython,PyPy一样,RustPython,是使用Rust语言实现的Python解释器,支持Python3语法。
项目地址:https://github.com/RustPython/RustPython
RustPython真正方便的是可以编译成Wasm文件,可以直接在浏览器中使用,示例网站:https://rustpython.github.io/demo/
RustPython简单使用
需要提前安装好:git、rust的cargo环境
- 克隆并进入项目
git clone https://github.com/RustPython/RustPython
cd RustPython
- 手动编译
cargo build --release --features ssl
cd target/release
启用--feaatures ssl特性可以安装pip包管理工具
编译后在target/release下生成rust_python可执行文件
- 使用RustPython交互解释器
$ ./rustpython
Welcome to the magnificent Rust Python 0.4.0 interpreter
标签:python,简单,RustPython,https,使用,pip,requests,rust
From: https://www.cnblogs.com/superhin/p/18410808/rustpython