OS is “Ubuntu 24.04.2 LTS”
Python is Python 3.12.3
I’m trying to following instructions in README.rst
This:
#!/bin/bash
make clean
make venv
make html
generates
rm -rf ./venv
rm -rf build/*
Creating venv in ./venv
Using CPython 3.12.3 interpreter at: /usr/bin/python3
Creating virtual environment at: ./venv
Activate with: source venv/bin/activate
error: No virtual environment found for Python 3.10; run `uv venv` to create an environment, or pass `--system` to install into a non-virtual environment
The venv has been created in the ./venv directory
mkdir -p build
Missing the required blurb or sphinx-build tools.
Please run 'make venv' to install local copies.
make: *** [Makefile:55: build] Error 1
so I tried
#!/bin/bash
make clean
make venv
source venv/bin/activate
make html
and got
rm -rf ./venv
rm -rf build/*
Creating venv in ./venv
Using CPython 3.12.3 interpreter at: /usr/bin/python3
Creating virtual environment at: ./venv
Activate with: source venv/bin/activate
error: No virtual environment found for Python 3.10; run `uv venv` to create an environment, or pass `--system` to install into a non-virtual environment
The venv has been created in the ./venv directory
mkdir -p build
Missing the required blurb or sphinx-build tools.
Please run 'make venv' to install local copies.
make: *** [Makefile:55: build] Error 1