install/README.md
Official installer for Memvid (v1).
The installer automatically checks for and installs required dependencies, then installs Memvid globally:
npm install -g memvid-cli@latestThe installer only installs missing tools (no upgrades in v1). If a tool is already installed, it will be detected and skipped.
Important notes:
sudo access (required for package installation, except Alpine which may use su)Quick install (recommended):
curl -fsSL https://raw.githubusercontent.com/memvid/memvid/main/install/install.sh | bash
Download and run locally:
curl -fsSL https://raw.githubusercontent.com/memvid/memvid/main/install/install.sh -o install.sh
chmod +x install.sh
./install.sh
Non-interactive mode (for CI/CD):
The installer can run without user interaction when piped via curl | bash. It will proceed automatically if no terminal is detected.
Open PowerShell and run:
irm https://raw.githubusercontent.com/memvid/memvid/main/install/install.ps1 | iex
Or download and run:
.\install.ps1
These scripts are open source and readable. Before running, you can:
The installer will:
After installation, verify it worked:
memvid --version
If installation fails:
macOS:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"node command is not found after installation, you may need to restart your terminal or source your shell config fileLinux:
sudo access (or run as root on Alpine)sudo apt-get update, sudo dnf check-update, etc.)npm config get prefixWindows:
General:
npm list -g memvid-climemvid --version to verify installationsudo for global npm installsFor issues, please open an issue on GitHub.