Makefile does not work on MINGW64. Can someone help me?

0

I'm programming in python in Django with Sublime Text 3, using Git Bash MINGW64.

I created the makefile but when I run I get "bash: make: command not found"

    
asked by anonymous 31.05.2017 / 05:10

1 answer

1

Bash is not finding make, it may not be installed or may not be in your path.

Make sure it is installed, and if you are creating an environment variable and add it to the system path.

    
01.06.2017 / 01:08