Activating virtualenv in Makefile

3

How do I enable virtualenv in Makefile?

I tried

venv:
    @virtualenv venv

active:
    @source venv/bin/activate

I've tried it too

active:
    @. venv/bin/activate

And nothing.

    
asked by anonymous 21.11.2015 / 03:20

1 answer

0

Enable bash by creating an alias in .bashrc .

    
14.09.2016 / 21:46