Error with Meteor project "Error: EPERM: operation not permitted, unlink"

0

I imported a Meteor project and I wanted to open it from another computer, by running the meteor command on the project route I get the following message

Error: EPERM: operation not permitted, unlink 'C:\Users\Emery\work\meteor\score-keep\.meteor\local\dev_bundle'
    at Error (native)
    at Object.fs.unlinkSync (fs.js:932:18)
    at exports.makeLink (C:\tools\cli\dev-bundle-links.js:20:8)
    at [object Object]._.extend.ensureDevBundleLink (C:\tools\project-context.js:1476:7)
    at [object Object]._.extend._readFile (C:\tools\project-context.js:1410:10)
    at new exports.ReleaseFile (C:\tools\project-context.js:1360:8)
    at C:\tools\cli\main.js:898:22

why is this error because my project normally runs on the machine where I was working?

    
asked by Gerardo Bautista 23.07.2017 в 20:08
source

1 answer

0

Probably one of your folders on the other computer was created as "read-only" and that's why it throws you an EPERM error. Try searching for the folder node_modules right click - properties - disable the check that says "Read only"

Something like this:

    
answered by 24.07.2017 в 02:15