Skip to content

pythonpe/python.pe

Repository files navigation

Python Peru's Website

Install build tools

To build, first you need to install graphviz:

  1. macOS with Homebrew
brew install graphviz
  1. macOS with MacPorts
sudo port install graphviz
  1. apt-based Linux distribution
sudo apt install graphviz

Then make sure you have installed node and npm

  1. macOS with Homebrew
brew install node
  1. macOS with MacPorts
sudo port install nodejs21 npm10
  1. apt-based Linux distribution
sudo apt install nodejs npm

Install sketchviz

npm i

Install uv, follow the instructions in their documentation https://docs.astral.sh/uv/getting-started/installation/, uv will handle all the dependencies and the python installation as well. So we don't need to install python separately.

Then install all the necessary packages (make sure to change to the root directory of the project):

uv sync

Building the site

You can build the html files of the blog by running the following command:

uv run poe build

Then you can serve the files locally using this command:

uv run ablog serve