Skip to content

Commit

Permalink
Fix setup instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
DeflateAwning committed Oct 8, 2024
1 parent 7397826 commit dcbfde8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ Over time, the goal is to develop it into the ground station control software.
2. Clone this repo, and open a terminal in this repo's root.
3. Run `python3.11 -m venv venv/` to create a Python virtual environment named `venv/` in the current directory.
4. Run `.\venv\bin\activate` (on Windows), or `source ./venv/bin/activate` (on real operating systems).
5. Run `pip install -e cts1_ground_support[dev]` to install this Python Project in your virtual environment.
5. Run `pip install -e .` to install this Python Project in your virtual environment.
6. Run `cts1_ground_support --help` to ensure it installed.
7. Run `cts1_ground_support` to start the ground support terminal.
8. Visit [http://127.0.0.1:8050/](http://127.0.0.1:8050/) in a web browser to view the web interface and send commands to your dev kit.

## Development

1. Install the project as in the Getting Started section.
2. Run `pip install -e cts1_ground_support[dev]` to install the development dependencies.
3. Run `cts1_ground_support --debug` to start the ground support terminal in debug mode.
2. Run `pip install -e '.[dev]'` to install the development dependencies.
3. Optional: Run `cts1_ground_support --debug` to start the ground support terminal in debug mode.

The ground support terminal will automatically reload when you make changes to the code. It is written using the Dash framework in Python.

0 comments on commit dcbfde8

Please sign in to comment.