Vue Storefront安装后无法使用vsf命令的解决方法

技术运维

按照官方的安装方法

yarn global add @vue-storefront/cli

安装完后发现无法使用vsf

$ vsf

Command 'vsf' not found, did you mean:

  command 'gsf' from deb libgsf-bin
  command 'psf' from deb tcm
  command 'qsf' from deb qsf
  command 'bsf' from deb code-aster-gui
  command 'sf' from deb ruby-sprite-factory

Try: sudo apt install <deb name>

这时候可以用npx @vue-storefront/cli init替代。

最后安装依赖并启动项目

cd <project_name> 
yarn
yarn dev

Post Comment