开发者问题收集

我在创建 React 应用程序时遇到了这样的错误

2020-01-02
49578
-->
create-react-app : File C:\Users\ADMIN\AppData\Roaming\npm\create-react-app.ps1 cannot be loaded because running
scripts is disabled on this system. For more information, see about_Execution_Policies at
https:/go.microsoft.com/fwlink/?LinkID=135170.
At line:1 char:1
+ create-react-app demo
3个回答

我认为您使用的是 Windows,我遇到了同样的问题,这是由于系统中的安全功能所致。

  1. 以管理员身份打开 powershell。
  2. 运行以下命令 set-executionpolicy remotesigned
  3. 再试一次。

这对我有用。

来源: https://www.faqforge.com/windows/windows-powershell-running-scripts-is-disabled-on-this-system/

ShashankAC
2020-01-24

确保从 npm 全局删除 create-react-app ,并使用 npx create-react-app {project_name} 生成 React 应用程序。

npm uninstall --global create-react-app
npx create-react-app sample

此外,在执行这些操作时,请确保您的 npm 版本在 5.2 之后。

Hamid
2020-01-02

以管理员身份运行 power shell

  1. Windows 开始
  2. 搜索“Windows Powershell”
  3. 右键单击 Windows Powershell
  4. 单击以管理员身份运行(如果显示“用户帐户控制”,则授予)
  5. 输入 set-executionpolicy remotesigned
  6. 选择/输入 yes [Y]
Marlon
2020-05-09