Installation
ON THIS PAGE
A quick guide to installing AI Image Renamer either within a virtual environment or system-wide (recommended).
Content:
System Requirements
- Python 3.8 or higher
pip(comes with Python) orpipx
Install in Virtual Environment
If you don't have a virtual environment installed, create one by running the following command in the directory of your project:
bash
python -m venv venvAfter that, switch into the virtual environment:
bash
source venv/bin/activateYou can now use pip to install AI Image Renamer from PyPi.org:
bash
pip install ai-image-renamerInstall System-Wide
Use pipx to install AI Image Renamer system-wide so you can use it as a regular CLI tool. Follow the installation instructions of pipx for your operating system.
Once the pipx command is available, install it with the following command:
bash
pipx install ai-image-renamerThat's it! 🥳 You can now use the rename-images command. See "Quick Start" to learn how to use it.