Crates.io | python-launcher |
lib.rs | python-launcher |
version | 1.0.1 |
source | src |
created_at | 2018-06-02 00:18:13.23674 |
updated_at | 2024-07-01 19:13:55.27952 |
description | The Python launcher for Unix |
homepage | https://python-launcher.app |
repository | https://github.com/brettcannon/python-launcher |
max_upload_size | |
id | 68154 |
size | 111,707 |
Launch your Python interpreter the lazy/smart way!
This project is an implementation of the py
command for Unix-based platforms
(with some potential experimentation for good measure 😉).
Typical usage would be:
py -m venv .venv
py ... # Normal `python` usage.
This creates a virtual environment in a .venv
directory using the latest
version of Python installed. Subsequent uses of py
will then use that virtual
environment as long as it is in the current (or higher) directory; no
environment activation required (although the Python Launcher supports activated
environments as well)!