Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 1021 Bytes

File metadata and controls

58 lines (40 loc) · 1021 Bytes

Installation Guide

Development Installation

Install PyNode in development mode (recommended for development):

# Clone or navigate to the project directory
cd pynode

# Install in editable mode
pip install -e .

This installs PyNode as a package while keeping your source files editable.

Running PyNode

After installation, you can run PyNode in multiple ways:

Option 1: Using the pynode command

pynode

Option 2: Using Python module syntax

python -m pynode

Option 3: With custom options

pynode --host 0.0.0.0 --port 5000 --production

Command Line Options

  • --host: Host address to bind to (default: 0.0.0.0)
  • --port: Port to bind to (default: 5000)
  • --production: Run in production mode using Waitress server

Installing Node Dependencies

Some custom nodes have additional dependencies. To install them:

# Windows
install_nodes.bat

# Linux/Mac
./install_nodes.sh

Uninstalling

pip uninstall pynode