npm install axios在我的react native应用程序中不工作?

8fq7wneg  于 2023-08-04  发布在  iOS
关注(0)|答案(6)|浏览(160)

我是开发React Native应用的新手。我在终端中使用npm install axios命令安装axios时遇到了问题。
我也尝试了下面的代码来安装axios库:

npm install --save axios
npm i axiois --save

字符串
那么,我无法在应用中获取依赖项的问题是什么?
一个小请求也是installi在这个npm命令中是一样的吗?

更新

以下是可能对您有所帮助的日志:

npm ERR! code ETIMEDOUT
npm ERR! errno ETIMEDOUT
npm ERR! network request to https://registry.npmjs.org/axios failed, reason: connect ETIMEDOUT 104.16.21.35:443
npm ERR! network This is a problem related to network connectivity.
npm ERR! network In most cases you are behind a proxy or have bad network settings.
npm ERR! network 
npm ERR! network If you are behind a proxy, please make sure that the
npm ERR! network 'proxy' config is set properly.  See: 'npm help config'

npm ERR!

更新2

由于每个人都指向一个网络问题,我已经尝试了所有的答案和注解,你已经提供,但没有任何工作,但我能够使用互联网在我的PC上很容易意味着我正在运行此命令的设备。

npm install axios


在同一个设备上,我使用浏览器,Spotify和在终端我刚刚安装了VLC使用apt-get install,所以没有技术问题的机会。谢谢大家的帮助,但没有任何工作,还有其他的解决办法吗?

ycggw6v2

ycggw6v21#

它显然与您的系统网络有关。尝试通过从其他设备创建热点来更改您的网络。

vcirk6k6

vcirk6k62#

它的网络相关的问题,确保u有一个积极的互联网连接,而安装axiois。

igsr9ssn

igsr9ssn3#

尝试卸载,然后重新安装

npm uninstall axios
npm i axios

字符串

d5vmydt9

d5vmydt94#

检查您的网络连接
之后进行系统更新:1)sudo apt-get更新
尝试再次运行该命令。

xuo3flqw

xuo3flqw5#

根据您的日志,可能是您的Internet连接问题或代理设置问题。

  • 尝试重新连接到互联网,并确保您有活动的互联网连接。

如果重新连接到不同的互联网连接仍然不能解决您的问题,请尝试运行此命令:

npm cache verify

字符串
检查您的配置设置:npm配置列表
然后,您可以添加或更改代理设置:

npm config set http-proxy http://your_proxy_ip:port
npm config set https-proxy http://your_proxy_ip:port


Refer
Refer

yvt65v4c

yvt65v4c6#

连接到热点,并尝试安装,为我工作

相关问题