I have downloaded some software from github. for installation it provides an install.sh with the following commands
#!/bin/bash
#install OGDF
cd OGDF
./makeMakefile.py
make -j 16
cd ..
#install METACARVEL
make
I want to make sure it gets installed in an specific conda env because I have all the dependencies installed there. Is this possible? Can you guide me on how to do it?
thanks all :)