Quick Setup
Last updated
Last updated
Note: UvuvLib is dependent on PROS 3. If you do not have PROS 3 installed, follow the tutorial here: https://pros.cs.purdue.edu/v5/getting-started/index.html
Installing UvuvLib is pretty simple. In the Githup repo, there's a .zip file around the bottom that should look like this:
Copy that zip file into your project's main directory (outside of /include or /src) and run the command below in the PROS terminal:
pros conduct fetch uvuvlib@[version].zip
pros conduct apply uvuvlib
If there is a problem here, double check that you typed the name write (and didn't put the brackets in the command). Otherwise, see this link for help: https://pros.cs.purdue.edu/v5/cli/conductor.html?highlight=template
If you would like to make UvuvLib a part of every new project you make, go into the conductor.pros file and find the lines below, and add "uvuvlib" inside V5:
"default_libraries": {
"cortex": [],
"v5": [
"uvuvlib"
]
}
On Windows, this file is located in %APPDATA%\PROS
. On other systems, consult the Click documentation <https://click.palletsprojects.com/en/5.x/api/#click.get_app_dir> for possible locations.
This will make UvuvLib bundled into your workflow, and let you not have to redo the installation process (except when there's updates).