https://github.com/nicolargo/the-three-body-problem
The Three-Body Problem in Python
https://github.com/nicolargo/the-three-body-problem
Last synced: 3 months ago
JSON representation
The Three-Body Problem in Python
- Host: GitHub
- URL: https://github.com/nicolargo/the-three-body-problem
- Owner: nicolargo
- License: mit
- Created: 2024-03-30T12:27:53.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-30T16:24:28.000Z (about 1 year ago)
- Last Synced: 2025-01-26T04:11:46.394Z (5 months ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# The-Three-Body-Problem in Python
The Three-Body Problem is a famous problem in physics and mathematics. It is a problem of predicting the motion of three celestial bodies that are moving under no influence other than their mutual gravitational attraction.
This repository contains a Python implementation of the Three-Body Problem.
## Installation
Pip install:
```bash
pip install three-body-problem
```## Usage
## Local Development
1. Clone the repository:
```bash
git clone https://github.com/nicolargo/The-Three-Body-Problem.git
cd The-Three-Body-Problem
```2. Create a virtual environment:
```bash
python -m venv venv
```3. Activate the virtual environment:
```bash
source venv/bin/activate
```4. Install the dependencies:
```bash
pip install -r requirements.txt
```5. Test the package:
```bash
```