I am using a python script from GitHub to do some of my analysis. To run the script, I required some other programs which are also installed in our server. I linked the software with those programs by the following command.
ln -s /usr/local/bin/clustalo\
ln -s /usr/bin/blastn
The script behaves properly when I run it in our server and taking the python from the following path.
/usr/bin/python
But I can't run the program on screen because the python path is now as following and all the dependencies are not in this path.
userdata/student_users/X/software/miniconda2/bin/python
How can I change the path of the screen so that it takes this path?
/usr/bin/python
Try providing the python executable path at the top of python script? (
#!/usr/bin/python
)