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.
After installation, you can run PyNode in multiple ways:
pynodepython -m pynodepynode --host 0.0.0.0 --port 5000 --production--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
Some custom nodes have additional dependencies. To install them:
# Windows
install_nodes.bat
# Linux/Mac
./install_nodes.shpip uninstall pynode