creating coloring books using AI models :)
for the managed/consumer version of this goal, go here -> https://bespokebooks.io
- Create and activate a virtual environment:
python3 -m venv .venv
source .venv/bin/activate- Upgrade pip and install requirements:
python -m pip install --upgrade pip
pip install -r requirements.txt- Make the venv available as a Jupyter kernel (so the notebook uses it):
python -m ipykernel install --user --name bespoke-books-venv --display-name "Python (bespoke-books)"- Open
core_coloring_book.ipynbin your editor (e.g., VS Code) or Jupyter. - When prompted for a kernel, select "Python (bespoke-books)" (or the kernel you named above).
- If already open, you can switch kernels via the notebook's kernel selector.
To deactivate the venv later:
deactivate