Skip to content

Commit

Permalink
fix(README): now we can install plone.meta
Browse files Browse the repository at this point in the history
  • Loading branch information
gforcada committed Feb 15, 2025
1 parent 25f0b31 commit c0b814f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,15 @@ It does not cover the following.

## Setup

Clone `plone.meta` to any machine, then change your current working directory into `meta/config`, create a Python virtual environment, and install `plone.meta`'s requirements.
Install `plone.meta` like any other python distribution,
either from PyPI or a git clone.

```shell
# from PyPI
python3 -m venv venv
venv/bin/pip install plone.meta

# local clone
git clone https://github.com/plone/meta.git
cd meta
python3 -m venv venv
Expand Down

0 comments on commit c0b814f

Please sign in to comment.