Get Started - Learn How To Make Your Bot!GuidesCode SnippetsGet methodsPost methodsWeb APIUseful linksList of all currently Free ItemsList of all currently Free EmotesHighrise Bot SDK Changelog
Concept
Frequently the Highrise Bot SDK receives an update with new methods, bug fixes and improvements, to make sure you can enjoy all that you will need to update your SDK and thatβs what this guide is about.
Code
This is a very simple guide where I will show to update and how to make a clean update of your SDK using pip commands in your terminal (Shell for Replit users):
Regular library update
You can update your library by using the following command:
pip install --upgrade highrise-bot-sdk
This will fetch all updates and add the new modules to your library
Clean library update
Some times a regular update may not work and present problems and errors in your code, to fix that you can use a clean library update using in sequence the two following commands:
pip uninstall highrise-bot-sdk
pip install highrise-bot-sdk
This will remove and reinstall the Highrise Bot SDK library in your PC.
Β
If youβre using a Virtual Environment make sure to activate it first so the library can be installed in it.
Β