Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/waldirborbajr/stellar
Stellar
https://github.com/waldirborbajr/stellar
Last synced: 9 days ago
JSON representation
Stellar
- Host: GitHub
- URL: https://github.com/waldirborbajr/stellar
- Owner: waldirborbajr
- Created: 2024-10-30T11:40:52.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-11-08T14:37:06.000Z (3 months ago)
- Last Synced: 2024-11-08T15:32:40.568Z (3 months ago)
- Language: Rust
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Install uv
```sh
# On macOS and Linux.
$ curl -LsSf https://astral.sh/uv/install.sh | sh# On Windows.
$ powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"# With pip.
$ pip install uv
```
# Project Management```sh
$ uv init example
Initialized project `example` at `/home/user/example`$ cd example
$ uv add ruff
Creating virtual environment at: .venv
Resolved 2 packages in 170ms
Built example @ file:///home/user/example
Prepared 2 packages in 627ms
Installed 2 packages in 1ms
+ example==0.1.0 (from file:///home/user/example)
+ ruff==0.5.4$ uv run ruff check
All checks passed!
```# Python Management
```sh
uv venv --python 3.12.0
Using Python 3.12.0
Creating virtual environment at: .venv
Activate with: source .venv/bin/activate
```## Install requirements:
```sh
$ uv pip sync requirements.txt
```