https://github.com/dbeckwith/cs4732-proj3
Boids!
https://github.com/dbeckwith/cs4732-proj3
animation boids python
Last synced: 28 days ago
JSON representation
Boids!
- Host: GitHub
- URL: https://github.com/dbeckwith/cs4732-proj3
- Owner: dbeckwith
- Created: 2017-04-14T20:47:31.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-14T20:47:51.000Z (about 9 years ago)
- Last Synced: 2025-12-13T22:25:55.067Z (7 months ago)
- Topics: animation, boids, python
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WPI CS 4732 Project 3: Boids
by [Daniel Beckwith](https://github.com/dbeckwith)
[Demo](https://youtu.be/YIfROo0k2FM)
## Installation
First, make sure Python 3.5 is installed. Then, use `pip` to install the dependencies:
```bash
pip install -r requirements.txt
```
This will install the [PyQt5](https://www.riverbankcomputing.com/software/pyqt/download5). If you're on Windows and `pip` can't install some of the packages, you may have to download the appropriate wheel files from [here](http://www.lfd.uci.edu/~gohlke/pythonlibs/) and install them using `pip`:
```bash
pip install path/to/wheel1 path/to/wheel2 ...
```
You may want to do this in a [Virtual Environment](http://docs.python-guide.org/en/latest/dev/virtualenvs/) if you don't have administrative privilages.
## Usage
From the project root, run the python module to start the animation:
```bash
python -m proj3
```