mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 21:35:00 +00:00
![]() ## Summary Refreshes some of the activation scripts, and fixes some bugs in `activate_this.py` that were likely the rest of some erroneous copy-pasting. Closes https://github.com/astral-sh/uv/issues/3346. ## Test Plan ``` ❯ python Python 3.12.0 (main, Feb 28 2024, 09:44:16) [Clang 15.0.0 (clang-1500.1.0.2.5)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import httpx Traceback (most recent call last): File "<stdin>", line 1, in <module> ModuleNotFoundError: No module named 'httpx' >>> activator = '.venv/bin/activate_this.py' >>> with open(activator) as f: ... exec(f.read(), {'__file__': activator}) ... >>> import httpx ``` |
||
---|---|---|
.. | ||
src | ||
Cargo.toml | ||
README.md |
uv-virtualenv
uv-virtualenv
is a rust library to create Python virtual environments. It also has a CLI.