Install
Run from Release or Run From Source.
Run From Release
- Download the latest release for your operating system.
- Extract the contents of the release.
- Execute NfoForge.
!!! info "Already using an older version?" From 1.2.0 onward your settings and data live outside the application folder, so replacing a release leaves them alone. The first launch offers to bring your existing settings across. See Upgrading.
Run From Source
- Install uv.
-
Install Python with uv if not already installed.
What version of Python?
Refer to the requires-python value in
pyproject.tomlto see the supported Python range. -
Configure the HTTP dependencies, then create a virtual environment and install the locked runtime dependencies.
NfoForge uses both Requests-based clients and Niquests. The project keeps their HTTP transports in separate namespaces, so
URLLIB3_NO_OVERRIDEmust be set beforeuv syncinstallsurllib3-future.On Windows PowerShell:
On macOS or Linux:
Use
uv sync --locked --all-extrasinstead when you also need every optional extra.--all-extrascontrols which optional dependencies are installed; it does not replace the environment variable above. -
Start the application.
Updating the locked HTTP dependencies
The lockfile must keep urllib3-future at version 2.14.900 or newer. That
release fixed installation-order problems that could mix the urllib3 and
urllib3-future package files in a fresh environment. When intentionally
refreshing this transitive dependency, run:
Commit the resulting uv.lock, and keep URLLIB3_NO_OVERRIDE=1 set before the
next uv sync. See the urllib3.future cohabitation guidance
for the upstream rationale.
Where Your Settings Are Kept
NfoForge keeps your profiles, templates, cookies, plugins, tools and saved jobs in a folder of your own, separate from the application:
| System | Location |
|---|---|
| Windows | %LOCALAPPDATA%\nfoforge |
| macOS | ~/Library/Application Support/nfoforge |
| Linux | ~/.local/share/nfoforge |
A source checkout uses nfoforge-dev in the same place, so running from source never shares data with an installed release.