Home > Blockchain >  Vue Project not working after ubuntu customization
Vue Project not working after ubuntu customization

Time:10-04

I have created a project using vue.js at the frontend and flask at the backend, It was working perfectly. But, after I customized my ubuntu OS, suddenly I am unable to run the project, my flask and every other framework and library was uninstalled and I am unable to reinstall vue and I get this error message when I try to install vue again: enter image description here

Can someone tell me how to resolve this issue? By Customization, I installed some extensions and then some wallpapers, icon packs etc..

CodePudding user response:

As a user has mentioned in the replies earlier, what you are trying to do is installing a global package, and the error displayed there clearly stated that you lacked permissions, and the customizations you mentioned should not have any impact on this.

Since you are using Ubuntu, just add a sudo in front of the command that you are trying to execute and it should be fixed.

  • Related