https://github.com/philipwaldman/warp
Model rocket simulator
https://github.com/philipwaldman/warp
model-rocketry model-rockets simulator
Last synced: about 1 year ago
JSON representation
Model rocket simulator
- Host: GitHub
- URL: https://github.com/philipwaldman/warp
- Owner: PhilipWaldman
- License: mit
- Created: 2020-05-26T19:20:23.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-11T12:55:09.000Z (about 3 years ago)
- Last Synced: 2024-02-17T14:42:08.951Z (over 2 years ago)
- Topics: model-rocketry, model-rockets, simulator
- Language: Python
- Homepage:
- Size: 1.03 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Waldman Rocket Program (WARP)
WARP, short for **Wa**ldman **R**ocket **P**rogram, is a model rocket simulator created by Philip Waldman.
## Installation
The official guide to create virtual python environments can be
found [here](https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/). The following steps
are based off of that guide.
### Windows
1. Open command prompt and navigate to this folder using `cd "this folder's location"`.
2. Makes sure that you have the latest version of pip using `py -m pip install --upgrade pip`.
3. Install virtualenv: `py -m pip install --user virtualenv`.
4. Create a virtual environment: `py -m venv warp_env`.
5. Activate the virtual environment: `.\warp_env\Scripts\activate`.
6. Install the required packages: `pip install -r requirements.txt`.
7. Run the tool: `py index.py`.
8. Open a web browser and go to the URL that is mentioned on the first line after the tool is run.
9. Now the tool can be used.
10. In command prompt, press CTRL-C to stop the tool.
11. When done, leave the virtual environment: `deactivate`.
### Linux and macOS
1. Open the terminal and navigate to this folder.
2. Makes sure that you have the latest version of pip using `python3 -m pip install --user --upgrade pip`.
3. Install virtualenv: `python3 -m pip install --user virtualenv`.
4. Create a virtual environment: `python3 -m venv warp_env`.
5. Activate the virtual environment: `source env/bin/activate`.
6. Install the required packages: `pip install -r requirements.txt`.
7. Run the tool: `python3 index.py`.
8. Open a web browser and go to the URL that is mentioned on the first line after the tool is run.
9. Now the tool can be used.
10. In the terminal, press CTRL-C to stop the tool.
11. When done, leave the virtual environment: `deactivate`.
## License
[MIT](https://choosealicense.com/licenses/mit/)