KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#claude-code
#codex
#cli
#developer-tools
#react
#windows
fprime-tools
★ 37
Open GitHub ↗
F´ Python tooling and helpers.
Download README (.md)
Explore Similar Repositories
fprime-gds
:
F´ Python Ground Data System (GDS).
fprime-tutorial-hello-world
:
The F´ Hello World Tutorial
fprime-system-reference
:
A full-system reference for F´ projects.
fprime-arduino
:
An implementation allowing fprime to be run on a limite number of Arduino compatible devices.
fprime-workshop-led-blinker
:
LED Blinker Workshop Tutorial. Used for in-person F´ Workshops.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
fprime-tools
?
Download (.md)
# F´ Tools A package containing tools to work with F´. Installation can be done using: ``` pip install fprime-tools ``` Issues for these tools should be reported here: [File an issue](https://github.com/nasa/fprime/issues/new/choose) See also: https://fprime.jpl.nasa.gov to see the F´ framework. ## Developer Installation In order to install a branch not released on PIP, follow these steps: 1. Clone this repo or the developer fork containing the desired branch 2. Checkout the desired branch 3. Remove previous installation with `pip uninstall fprime-tools` 4. Install local checkout with `pip install .` Developers can add the `-e` flag when local changes need to affect the tool install immediately. `-e` links the current directory into the PIP install rather than copying the files over thus allowing local edits to affect the installed tools. This is commonly done during the development cycle. **Installing `devel`** These instructions will install the devel branch without allowing local edits to affect the installation. ``` git clone https://github.com/fprime-community/fprime-tools.git cd fprime-tools git checkout devel pip uninstall fprime-tools pip install . ``` ## Black Formatter To automatically format code, the Black Formatter can be installed with: ```pip install black``` Then it can be run on the project using: ``` black ./ ```