WARP, short for Waldman Rocket Program, is a model rocket simulator created by Philip Waldman.
The official guide to create virtual python environments can be found here. The following steps are based off of that guide.
- Open command prompt and navigate to this folder using
cd "this folder's location"
. - Makes sure that you have the latest version of pip using
py -m pip install --upgrade pip
. - Install virtualenv:
py -m pip install --user virtualenv
. - Create a virtual environment:
py -m venv warp_env
. - Activate the virtual environment:
.\warp_env\Scripts\activate
. - Install the required packages:
pip install -r requirements.txt
. - Run the tool:
py index.py
. - Open a web browser and go to the URL that is mentioned on the first line after the tool is run.
- Now the tool can be used.
- In command prompt, press CTRL-C to stop the tool.
- When done, leave the virtual environment:
deactivate
.
- Open the terminal and navigate to this folder.
- Makes sure that you have the latest version of pip using
python3 -m pip install --user --upgrade pip
. - Install virtualenv:
python3 -m pip install --user virtualenv
. - Create a virtual environment:
python3 -m venv warp_env
. - Activate the virtual environment:
source env/bin/activate
. - Install the required packages:
pip install -r requirements.txt
. - Run the tool:
python3 index.py
. - Open a web browser and go to the URL that is mentioned on the first line after the tool is run.
- Now the tool can be used.
- In the terminal, press CTRL-C to stop the tool.
- When done, leave the virtual environment:
deactivate
.