-
-
Notifications
You must be signed in to change notification settings - Fork 128
Advanced Installation for Windows
- Windows 10 or 11 (Windows 8 is reported to work but is not supported)
- Python ≥ 3.10.1 (version 3.9 should work as well but is not officially supported)
- pipenv (
pip install pipenv
) - pyinstaller (
pip install pyinstaller
) [optional, only if you want to compile the application yourself] - git [optional, only if you want to run the application from source code]
- 7zip [optional, only if you want to compile the application from source code and zip the output files]
Please note that all of the above must be on your PATH. If they are not, add them to your PATH. Refer to this guide for more information.
- Download and extract the latest source code available from the Releases tab ('Source code (zip)' file) or via
git clone https://github.com/LeagueOfPoro/CapsuleFarmerEvolved.git
- Generate the config files as required by the application - see Configuration for details.
- Run
pipenv install
to install the required dependencies. - Run
pipenv run python ./src/main.py
to start the application.
Did you run pipenv install
? If not, run it and try again. (Step 3)
Did you install pipenv? If not, install it and try again. (As shown in the Prerequisites section)
Did you install pipenv? If not, install it and try again. (As shown in the Prerequisites section)
Remember: If you have installed pipenv, make sure it is in your PATH. If it is not, add it to your PATH.
(See this StackOverflow answer for more details)
You can also try python -m pipenv <COMMAND>
instead, but this is not recommended.
If the application is running from the source code, you can also compile it into a single executable file using pyinstaller.
- Run
pipenv install
to install the required dependencies. - If you have not already, generate the config files as required by the application - see Configuration for details.
- Open a terminal in the root directory of the project (you should see
src
andconfig
directories if you typedir
). - Run
setup/windows.bat
(CMD/PowerShell compatible) - The compiled executable will be in the
build
directory. You can quickly start it with./build/CapsuleFarmerEvolved.exe
usage: CapsuleFarmerEvolved.exe [-h] [-c CONFIGPATH]
Farm Esports Capsules by watching all matches on lolesports.com.
options:
-h, --help show this help message and exit
-c CONFIGPATH, --config CONFIGPATH
Path to a custom config file
capsulefarmerevolved.exe --config /path/to/config.yaml
Need help? Join our Discord: https://discord.gg/ebm5MJNvHU and locate the #capsule-farmer-help channel!
- Home
- Getting Started
- Frequently Asked Questions
- Troubleshooting
- Latest Release
- @League of Poro