[Vuejs]-Why does error about global installation of Expo CLI occur for vue-native init command?

1๐Ÿ‘

โœ…

I was able to get the vue-native init my-vue-app command working by starting with a clean VM and doing the package installation differently than on the first VM. Two changes were made on the second VM:

  • Node version manager (called n) was used to install NodeJS and npm (rather than using curl)
  • Expo CLI was installed globally using npm (not Yarn)

Iโ€™m not sure if one of these changes or both were necessary to get Vue Native to work because they were not tested separately but Vue Native is working now! Woo hoo!

Here is a screenshot of the package versions on the working VM:
enter image description here

๐Ÿ‘คknot22

Leave a comment