Pelican Notes
Table of Contents
1. About
Pelican is a static site generator, written in Python.
2. Installation
-
Follow this doc.
-
Pelican is best installed as a self contained Python virtual environment.
-
Create a Python virtual environment
-
Launch VSC
-
Open a terminal window
-
Execute the following to create the venv in a folder named
pelican:py -3 -m venv ./pelican -
CD into the new folder:
cd ./pelican -
Activate:
./scripts/activate
-
-
Install Pelican
-
Install
python -m pip install pelican[asciidoc] -
Confirm
pelican --version
-
-