Using uv for python package management

What is UV? An fast python package manager and project manager (Written in Rust) replaces pip, pyvenv, virtualenv etc. Runs scripts Installs and Manages Python versions Installation UV can be installed using any one of the package managers (homebrew, pacman etc) Commands Initializing a project uv init <project_name> The above command creates a folder named <project_name>. Inside the project name there is a complete project directory including the virtual environment. UV expects you to follow this project structure. Project Structure: . ├── .venv │ ├── bin │ ├── lib │ └── pyvenv.cfg ├── .python-version ├── README.md ├── main.py ├── pyproject.toml └── uv.lock pyproject.toml This file contains the metadata about the project in question, that can either be added manually by editing this file or by running certain commands. Sample file: [project] name = "hello-world" version = "0.1.0" description = "Add your description here" readme = "README.md" dependencies = [] Adding dependencies to the project uv add request #package versions can be specified Removing dependencies from the project uv remove request Running a program and running a script #program uv add flask uv run --flask run -p 3000 #script uv run <python_file_name> Updating the environment uv sync Note: UV does not activate virtual environment using these command. One needs to activate the virtual environment first before running scripts or programs. Creating virtual environment using uv uv venv #creates .venv uv venv <venv_name> #creates virtual environment named venv_name Integration with emacs Install uv-mode: link Instructions UV Mode works automatically once installed. Simply open a Python file in a project that has a .venv directory, and UV Mode will activate the appropriate virtual environment.

March 26, 2025 · 2 min · 271 words · Kaushal Bundel

Exercism Programming Advice

Context I am a novice programmer who used to hate programming earlier. Slowly I have started enjoying programming as an activity and exercism.org has played a huge part in it. Exercism is tool to help learn programming, their are numerous language tracks, super interesting problems, absolutely free and the best part, amazing mentors that can mentor you on either a problem specific or a general way. This conversation is one of such conversations that I had with my mentor for a specific problem that I was doing 7 months ago. Through this is for beginners but you never know, ideas and memories are same, one can be used when least expected.🤓 ...

February 29, 2024 · 4 min · 663 words · Kaushal Bundel