zoukankan      html  css  js  c++  java
  • Failed to start Unity Package Manager: operation timed out.

    Hi,

    We have found one 100% repro step for this issue. An empty hosts file is the cause. We have a fix in the way. But in the meantime, can you check the content of your hosts file. It should be located here:

    On Windows:

    C:WindowsSystem32driversetchosts

    On macOS:

    /etc/hosts

    Make sure the localhost host name is defined like this

    127.0.0.1 localhost

    Another solution other users have reported to work is to set the UNITY_NOPROXY environment variable to localhost:

    On Windows command prompt,

    setx UNITY_NOPROXY localhost,127.0.0.1

    On Mac > terminal,

    export UNITY_NOPROXY=localhost,127.0.0.1

    If this fix does not work or if your hosts file is already correct, we also found out that anti-virus softwares can prevent the Unity Package Manager process to start. In that scenario, you can disable your anti-virus software for a few minutes to test if it works. If it did, configure your anti-virus to whitelist the NodeJS bundled with Unity (Under Unity installation folder, /Tools/nodejs/node.exe on Windows of /Tools/nodejs/bin/node on other platforms).

    Let me know if it resolve the issue!

    Pascal

  • 相关阅读:
    8-15 globalCompositeOperation阶段练习二
    8-13 canvas专题-阶段练习二(下)
    8-12 canvas专题-阶段练习一(上)
    最长公共字串
    8-23 canvas专题
    8-2 canvas专题-线条样式
    7-81 js课程小结
    7-80 HTML5新增的JS选择器
    VS快捷键教程
    java.text.NumberFormat使用方法
  • 原文地址:https://www.cnblogs.com/jrmy/p/14316268.html
Copyright © 2011-2022 走看看