Skip to content

Commit 1203bae

Browse files
authored
Revise README for n8n 1.123.5 Python portability
Updated README to provide detailed information about n8n 1.123.5 and its portable Python setup.
0 parents  commit 1203bae

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

README.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# n8n 1.123.5 + Python 3.14 – Fully Portable Windows
2+
3+
No Docker • No pip • No conda • No admin rights • Works offline
4+
5+
Extract → double-click `start-n8n.bat` → open http://localhost:5678
6+
Native **Python Code** node works instantly.
7+
8+
### Download
9+
[Latest ZIP](https://github.com/rookiemann/n8n-python-portable/releases/latest/download/n8n-python-portable.zip) (~383 MB)
10+
11+
### Folder Structure
12+
13+
```
14+
n8n-python-portable/ # Extract this folder anywhere
15+
16+
├── start-n8n.bat # Double-click this to launch n8n
17+
├── package.json # n8n config
18+
├── package-lock.json # Locked deps
19+
20+
├── node/ # Bundled Node.js (no install needed)
21+
│ ├── node.exe # Runs n8n
22+
│ ├── npm.cmd # Optional package manager
23+
│ └── ... # Other Node files
24+
25+
├── python/ # Fully embedded Python 3.14
26+
│ ├── python.exe # The Python interpreter
27+
│ ├── python314.dll # Core DLL
28+
│ ├── python314._pth # Path config for portability
29+
│ ├── DLLs/ # Dynamic libraries
30+
│ │ ├── sqlite3.dll
31+
│ │ ├── _ssl.pyd
32+
│ │ └── ...
33+
│ ├── Lib/ # Standard library (full Python stdlib)
34+
│ │ ├── site-packages/ # For any extra modules
35+
│ │ ├── asyncio/
36+
│ │ ├── collections/
37+
│ │ └── ...
38+
│ └── Scripts/ # Tools like pip (optional)
39+
│ └── pip.exe
40+
41+
├── node_modules/ # 100% complete n8n dependencies
42+
│ ├── n8n/ # n8n core
43+
│ │ └── bin/n8n # CLI entrypoint
44+
│ ├── @n8n/ # n8n extensions
45+
│ ├── @langchain/ # AI/LLM support
46+
│ ├── axios/ # HTTP client
47+
│ ├── express/ # Web server
48+
│ ├── ... # ~4000+ packages
49+
50+
└── .n8n/ # Created on first run (your data)
51+
├── config # Settings
52+
├── database.sqlite # Workflow storage
53+
└── workflows/ # Saved automations
54+
```
55+

0 commit comments

Comments
 (0)