-
Notifications
You must be signed in to change notification settings - Fork 0
Install and run
Certainly! Here's a revised version with improved wording and clarity while retaining the headers and sections:
Note: Ensure that Python 3.10+ is installed.
-
Download the .zip or .tar.gz file from the latest release.
-
Extract the archive and open a terminal in the 'src' folder inside it.
-
Install the dependencies with:
pip install -r requirements.txt
-
Execute the script.
python MrpackChangelogger.py [args]
Example:
python MrpackChangelogger.py --old_path path/to/old/version --new_path path/to/new/version
Tip
You can also run MrpackChangelogger in your python script!
from MrpackChangelogger import main
# Your code
main(old_path, new_path, config_path, changelog_file) # Last two are optional
-
Navigate to the latest release on GitHub.
-
Download the Windows build from the release tab.
-
Open PowerShell or Command Prompt.
-
Change the directory to where the downloaded file is located.
cd \path\to\downloaded\file
-
Execute the program.
.\MrpackChangelogger.exe [args]
-
Visit the latest release on GitHub.
-
Download the Linux build from the release tab.
-
Open a terminal.
-
Navigate to the directory containing the downloaded file.
cd /path/to/downloaded/file
-
Grant execute permissions.
chmod +x MrpackChangelogger
-
Run the program.
./MrpackChangelogger [args]