diff options
author | 1F335 <alexhayden25@gmail.com> | 2019-02-02 21:42:54 +0000 |
---|---|---|
committer | 1F335 <alexhayden25@gmail.com> | 2019-02-02 21:42:54 +0000 |
commit | a63a317f7ed3ae812c8587ff92e8676552f9a711 (patch) | |
tree | 1995b47758d1a645fef062a4c9d659ad90202da1 /readme.md | |
parent | 39f07d92af6f363175f3c09ccbd73b4093b4f172 (diff) | |
parent | d3c7b517043f6d759b454a9e14cd2b3b9639888a (diff) | |
download | modpackman-a63a317f7ed3ae812c8587ff92e8676552f9a711.tar.gz modpackman-a63a317f7ed3ae812c8587ff92e8676552f9a711.zip |
Merge branch 'JEFFREY' into 'JEFFREY'
Update update.py
See merge request 1F335/modpackman!7
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -5,12 +5,15 @@ Script to update modpacks automatically #### To Use -Simply put the location of your `mods` folder in `pack-location.txt` and run `python update.py install` +First, install [Python 3](https://www.python.org/downloads/) and [Git](https://git-scm.com/downloads) and add them to your `$PATH`. +Then, run `pip install requests` to install the Python Requests module (required to run the script). -Requires the `requests` module. +Simply put the location of your `mods` folder in `pack-location.txt` and run `python update.py install` #### Maintenance: -To check `downloads.txt` modlist for updates against `latest-urls.txt` modlist, run `python update.py check_updates` +To check `downloads.txt` modlist for updates against `mods.txt` modlist, run `python update.py check_updates`. + +To automatically populate `downloads.txt` with the most recent versions of mods listed in `mods.txt` run `python update.py apply_updates`. -To automatically populate `downloads.txt` with the most recent versions of mods listed in `latest-urls.txt` run `python update.py apply_updates` +Finally, to actually install your mods from the list in `downloads.txt`, run `python update.py install` |