天天看點

vue create 項目報錯處理辦法

vue create 項目報錯

    • 報錯資訊
    • 處理辦法

報錯資訊

vue : 無法加載檔案 C:\Users\thell\AppData\Roaming\npm\vue.ps1,因為在此系統上禁止運作腳本。有關詳細資訊,請參閱 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
所在位置 行:1 字元: 1
 + vue create webthl
 + ~~~
    + CategoryInfo          : SecurityError: (:) [],PSSecurityException
    + FullyQualifiedErrorId : UnauthorizedAccess
           

處理辦法

  1. windows打開開始菜單輸入power,找到powershell,以管理者身份打開

    注意之前按網上的辦法設定了沒有用,是因為選擇powershell時要選擇系統對應的位數看是32還是64位的

    ,我的是64位系統選擇x86的設定是沒有效果的。
    vue create 項目報錯處理辦法
  2. 執行指令

    set-ExecutionPolicy RemoteSigned

    ,選擇Y或者A都可以
    vue create 項目報錯處理辦法
    3. 在執行就不報錯了,親測可用。
    vue create 項目報錯處理辦法

繼續閱讀