HybridDog / onomatopoeia

Isometric mapper for Minetest
GNU General Public License v3.0
6 stars 2 forks source link

Missing requirements.txt #3

Open brylie opened 3 years ago

brylie commented 3 years ago

It is difficult to run the project without the necessary dependencies. Please provide a requirements.txt file so it is easy to install the project dependencies:

pip freeze > requirements.txt
HybridDog commented 2 years ago

pip freeze would show all my installed packages, which is a lot more than the necessary dependencies. I've used pipreqs instead to find them and apparently the only dependencies are Pillow and NumPy.

brylie commented 2 years ago

Ok, remember to work in a Python environment rather than installing everything globally :-)

python -m venv .venv

then

source .venv/bin/activate