如何使用 vue-cli create 修复错误“No such file or directory error”
How to fix error " No such file or directory error" with vue-cli create
我安装了 vue-cli 3。我尝试使用 vue create 创建一个 vue 应用程序,但出现没有这样的文件错误。
~$ vue create hello-world
bash: /usr/local/bin/vue: No such file or directory
正在安装vue/cli3
yarn global v0.15.1
warning No license field
[1/4] Resolving packages...
[2/4] Fetching packages...
warning fsevents@1.2.9: The platform "linux" is incompatible with this module.
info "fsevents@1.2.9" is an optional dependency and failed compatibility check. Excluding it from installation.
[3/4] Linking dependencies...
[4/4] Building fresh packages...
success Installed @vue/cli@3.12.0 with binaries:
- vue
Done in 1.69s.
我希望这对某些人有所帮助,但我也遇到了同样的情况,我只需要在尝试使用它之前重新启动终端。我的意思是,在使用 npm i -g @vue/cli
安装 vue-cli 后,重新启动终端或使用类似以下内容更新源代码:source ~/.bash_profile
(或者只是重新启动终端,这样更容易),这样您的配置文件中的路径就会更新:) .这为我修好了。
在使用 npm i -g @vue/cli 安装 vue-cli 并使用类似 source ~/.profile 或 ( ~/.bash_profile).这对我有用。
我只是通过简单地添加 sudo
like sudo npm update -g @vue/cli
#OR sudo yarn global upgrade --latest @vue/cli
解决了这个错误
我安装了 vue-cli 3。我尝试使用 vue create 创建一个 vue 应用程序,但出现没有这样的文件错误。
~$ vue create hello-world
bash: /usr/local/bin/vue: No such file or directory
正在安装vue/cli3
yarn global v0.15.1
warning No license field
[1/4] Resolving packages...
[2/4] Fetching packages...
warning fsevents@1.2.9: The platform "linux" is incompatible with this module.
info "fsevents@1.2.9" is an optional dependency and failed compatibility check. Excluding it from installation.
[3/4] Linking dependencies...
[4/4] Building fresh packages...
success Installed @vue/cli@3.12.0 with binaries:
- vue
Done in 1.69s.
我希望这对某些人有所帮助,但我也遇到了同样的情况,我只需要在尝试使用它之前重新启动终端。我的意思是,在使用 npm i -g @vue/cli
安装 vue-cli 后,重新启动终端或使用类似以下内容更新源代码:source ~/.bash_profile
(或者只是重新启动终端,这样更容易),这样您的配置文件中的路径就会更新:) .这为我修好了。
在使用 npm i -g @vue/cli 安装 vue-cli 并使用类似 source ~/.profile 或 ( ~/.bash_profile).这对我有用。
我只是通过简单地添加 sudo
like sudo npm update -g @vue/cli
#OR sudo yarn global upgrade --latest @vue/cli