Skip to content

Latest commit

 

History

History
63 lines (36 loc) · 1.4 KB

cscore.rst

File metadata and controls

63 lines (36 loc) · 1.4 KB

robotpy-cscore install

RoboRIO installation

If you have robotpy-installer on your computer, then installing robotpy-cscore is very simple:

Windows

# While connected to the internet
py -3 -m robotpy_installer download robotpy[cscore]

# While connected to the network with a RoboRIO on it
py -3 -m robotpy_installer install robotpy[cscore]

Linux/macOS

# While connected to the internet
robotpy-installer download robotpy[cscore]

# While connected to the network with a RoboRIO on it
robotpy-installer install robotpy[cscore]

For additional details about running robotpy-installer on your computer, see the robotpy-installer documentation <install_packages>.

Non-roboRIO installation

We now distribute pre-built wheels for CSCore, so you can just use pip to install it:

Windows

py -3 -m pip install -U robotpy[cscore]

Linux/macOS

pip3 install -U robotpy[cscore]

ARM Coprocessor

pip3 install -U robotpy[cscore] --find-links=https://tortall.net/~robotpy/wheels/2023/raspbian/

Next steps

See our cscore documentation <vision> for examples and deployment thoughts.