Installing on Linux
Installing the toolchain
The steps for installing the toolchain can differ greatly per distribution. The first step is to check whether your package manager offers the arm-none-eabi toolchain. If so, make sure that the version available is greater than or equal to 7.2 before installing.
If you're not sure whether your distribution's package manager has the toolchain available, or if you prefer to install things manually, follow the instructions below.
- Download the latest version of the toolchain from the Arm developer site. We recommend the "Linux 64-bit" release. If you can't use this for some reason (e.g. you have a 32-bit system), you may need to download the "Source Invariant" release and build manually, following the instructions in the archive.
- Move the file to your home directory and untar it using the command
tar -xjvf gcc-arm-none-eabi-X-20XX-qX-update-linux.tar.bz2
. The Xs should be replaced with those present in the name of the file you downloaded. - Add this line to your
.bashrc
file (if using bash), replacing<your user>
with your username:export PATH=$PATH:/home/<your user>/gcc-arm-none-eabi-8-2019-q3-update/bin/
. If you are using a shell other than bash, refer to that shell's documentation for how and where to add entries to your PATH when logging in. - Close and re-open your terminal, or run
source ~/.bashrc
(if running bash). - Test by running
arm-none-eabi-gcc --version
. The output should confirm that the version is greater than or equal to 7.2. If it is not, make sure you don't have conflicting versions installed through a package manager.
Installing the CLI
- If you do not already have one installed, install a version of Python greater than or equal to 3.6
- Check the latest version of the PROS CLI on our releases page, and run
python3.6 -m pip install --user https:/
, replacing the number after 'python' with the version you installed and the Xs with the numbers you found before. If you wish to install for all users, run the command with/ github.com/ purduesigbots/ pros-cli/ releases/ download/ 3.X.X/ pros\_cli\_v5-3.X.X-py3-none-any.whl sudo
and remove the--user
flag. - Run
prosv5 --version
to verify the CLI was installed correctly. If the command doesn't work, try restarting your machine.
Installing the Editor
- Follow the instructions here to build and install cquery.
- Install Atom.
- Run
apm install pros-bootstrapper@0.0.12
. - Open Atom and wait for any plugins to finish installing.
- Happy coding!