Divyanshu Garg
10/03/2024, 5:43 PMMarvin
10/03/2024, 5:44 PMpip install prefect
. It is recommended to use a Python virtual environment for the installation.
2. Configure Local Host Server:
- Host a Prefect server instance by using the CLI command: prefect server start
.
- To access the Prefect server UI, open the URL <http://127.0.0.1:4200>
in a web browser.
- To stop the server, use ctrl + c
in the terminal.
For more details, you can refer to Prefect 2.x documentation:
- Installation Guide
- Server Configuration Guide
Prefect 3.x:
1. Installation:
- Make sure you have Python 3.9 or newer.
- Install Prefect with: pip install -U prefect
- Verify installation by running: prefect version
2. Configure Local Host Server:
- Start the server using: prefect server start
.
- Access the server UI at <http://127.0.0.1:4200>
.
- Stop the server using ctrl + c
.
Check the detailed instructions here:
- Installation Guide
- Server Hosting Guide
Let me know if you have any more questions or need further help!