This is my first time using the make install
command. The program I'm trying to install uses python 2.7, and my environment normally has python 3.6. I'm using Linux.
I thought using conda create -n oldpython python=2.7
, followed by source activate oldpython
, then make install
would allow the program to install. However, after using make install
I get the error
SyntaxError: Missing parentheses in call to 'print'
make: *** [check_dep] Error 1
Since it's missing parentheses in call to 'print'
, maybe I'm not loading up python 2.7 like I thought?