Setting up a hacking Environment
This page will walk you through setting up your development environment for Fabric.
Fabric Source
To start developing, you should grab the latest commit of Fabric so that you’re up-to-date.
To do this, run this command:
git clone https://github.com/Fabric-Development/fabric
Virtual Environment
Create a Python virtual environment:
python -m venv venv
Source your new virtual environment:
source venv/bin/activate
We now have a separate environment for packages.
Finally, install the current Fabric source in place as a package:
pip install -r requirements.txtpip install -e .
And you’re ready! Continue on this page to start hacking.