简体   繁体   中英

PuPHPet Vagrant Debian - Won't change provisioned Node.js version

I want to change the Node.js version provisioned with my custom machine (debian75-x64) from v0.12.15 to v4.5.0. The config.yml originally was:

nodejs:
    install: '1'
    settings:
        version: '0.12'
    npm_packages:
        - bower
        - gulp
        - grunt-cli
        - browser-sync

and I changed it to:

nodejs:
    install: '1'
    settings:
        version: '4'
    npm_packages:
        - bower
        - gulp
        - grunt-cli
        - browser-sync

then ran vagrant provision , and check if a new node version has been installed. Unfortunately I keep getting

$ node --version
v0.12.15

no matter restarting the machine and provisioning again. Am I missing to do something else?

Citing Juan in https://github.com/puphpet/puphpet/issues/2420 :

Inside your VM delete /.puphpet-stuff/nodesource and try again.

It worked.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM