Get Started in Minutes
This guide will help you install Flowise and create your first working chatflow quickly.Prerequisites: Ensure you have Node.js version 18.15.0 or higher installed.
Install Flowise
Install Flowise globally using npm:This command installs Flowise as a global package, making it available from anywhere on your system.
Access the Interface
Open your browser and navigate to:You should see the Flowise visual builder interface.
Create Your First Chatflow
Now let’s build a simple chatflow:
- Click on “Add New” to create a new chatflow
- From the nodes panel, drag and drop:
- A Chat Model node (e.g., ChatOpenAI)
- A Conversation Chain node
- Connect the nodes by dragging from one node’s output to another’s input
- Configure your LLM API key in the Chat Model node settings
- Click “Save” to save your chatflow
- Click the “Chat” button to test your chatflow
What’s Next?
Explore Components
Discover the wide range of LLMs, tools, vector stores, and other components available in Flowise.
Build an Agent
Learn how to create more sophisticated AI agents that can use tools and reasoning.
Configure Your Instance
Customize Flowise with environment variables for database, authentication, and more.
Deploy to Production
Deploy your Flowise instance to AWS, Azure, GCP, or other platforms.
Troubleshooting
Port 3000 is already in use
Port 3000 is already in use
If port 3000 is occupied, you can specify a different port using the
PORT environment variable:Node.js version errors
Node.js version errors
Flowise requires Node.js >= 18.15.0. Check your version:If your version is lower, download and install the latest LTS version from nodejs.org.
Installation fails or hangs
Installation fails or hangs
Try clearing your npm cache and reinstalling:
Alternative: Docker Quickstart
Prefer Docker? You can also run Flowise with Docker:http://localhost:3000.
For more Docker options, see the Installation Guide.