I am trying to create a makefile to compile a full project.
I want to start by creating a virtualenv variable inside it using mkvirtualenv wrapper like:
mkvirtualenv
train: create_env echo "create env?" create_env: ( mkvirtualenv -p python3.6 RC_RSC_env; )
but I am getting this error:
( mkvirtualenv -p python3.6 RC_RSC_env; ) /bin/sh: 2: mkvirtualenv: not found Makefile:6: recipe for target 'create_env' failed make: *** [create_env] Error 127
1.4m articles
1.4m replys
5 comments
57.0k users