Reputation: 4998
I have tried this solution. But it is not working for me. I've cloned a project from gitlab and trying to run the same. First see the output of my ng version
command.
. I want to run an
angular 6
project available on gitlab. You can clone it from here. I extracted the project and tried npm install
. To which I'm getting the below errors:
. However I still tried
ng serve
.
I know It will definitely fail now. Please tell me whether something is wrong with the project or I am doing some mistake. Even with
run as admin
cmd prompt i'm getting this:
Upvotes: 0
Views: 194
Reputation: 565
I have taken the clone and tried running ng serve, I got the same issue. However, I am able to run the project by changing rxjs version. Try using following command :
npm install [email protected] --save
Reference: https://github.com/ReactiveX/rxjs/issues/4540
Upvotes: 1