Created
April 14, 2022 20:25
-
-
Save ericof/1668aaa1c2c365cb49d481296df05582 to your computer and use it in GitHub Desktop.
Plone pip installation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a new Python virtual environment | |
python3 -m venv . | |
# Install Plone | |
./bin/pip install Plone -c https://dist.plone.org/release/6.0.0a4/constraints.txt | |
# Create a new instance | |
./bin/mkwsgiinstance -d . | |
# Start Plone | |
./bin/runwsgi -v etc/zope.ini |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment