Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

EXEC:EXEC(0,0): Error : not found: python2

I am trying to Merge my local branch to Target branch on server VSTS but it always failed by saying below error message:-

EXEC:EXEC(0,0): Error : not found: python2

My local publish works well but only issue when merging any source to target branch on VSTS.

enter image description here

like image 785
Parveen Avatar asked May 15 '18 05:05

Parveen


1 Answers

I am able to resolve this issue by adding following command :- Only issue was that Python was not installed on server, so these 2 command will help you to install that package:-

1) npm install nan 2) npm install node-sass

it works like a charm, thanks everyone for your reply.

like image 107
Parveen Avatar answered Oct 17 '22 16:10

Parveen