403错误!403您访问的页面不存在

bttbmeg0  于 2022-11-05  发布在  其他
关注(0)|答案(1)|浏览(126)

我正在尝试使用ExtReact试用版并使用链接
https://docs.sencha.com/extreact/7.2.0/guides/getting_started/creating_ext_react_app_modern.html
因此,成功获得用户名和密码,并能够在步骤2中登录。
但在运行步骤3:使用create-react-app创建React应用程序,但ExtReact模板不起作用。以下命令出现以下错误。
npx create-react-app --template @sencha/ext-react-modern ext-react-modern-demo

错误:

Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts with @sencha/cra-template-ext-react-modern...

npm ERR! code E403
npm ERR! 403 403 Forbidden - GET https://npm.sencha.com/@sencha%2fcra-template-ext-react-modern - unregistered users are not allowed to access package @sencha/cra-template-ext-react-modern
npm ERR! 403 In most cases, you or one of your dependencies are requesting
npm ERR! 403 a package version that is forbidden by your security policy.
cigdeys3

cigdeys31#

https://docs.sencha.com/extwebcomponents/7.0.0/guides/open_tooling_npm/npm_help.html

Windows(命令提示符)

1.执行del %HOMEPATH%.npmrc -移除储存的npm储存库凭证。此位置可能与您系统上的不同。(或手动删除此档案,因为它位于本机计算机上)
1.运行npm缓存清理--强制或rmdir /s /q %HOMEPATH%\AppData\Roaming\npm -清理npm软件包。
1.运行rmdir /s /q %HOMEPATH%\AppData\Roaming\npm-cache -通过删除npm缓存来清除它。
1.运行npm login --registry=https:npm.sencha.com--scope=@ Sencha - log返回到存储库。运行npm install -g @sencha/ext-gen或npm install -g @sencha/ext-react-gen

相关问题