このセクションでは、以下の問題に関する情報を提供します。
エラーの種類 | エラーメッセージ |
---|---|
一般的な起動時の問題 | - Package Manager ウィンドウのエラーメッセージ - Package Manager が見つからない、またはウィンドウが開かない - Unity を新しいバージョンにアップグレードした後の問題 - プロジェクトのパッケージ設定をリセットする |
パッケージのインストールに関する問題 | - Package installation fails - Packages not recognized - Unable to add package from Git URL - Insufficient drive space |
Package signature issues | - Package version has no signature - Package version doesn’t have a valid signature |
Git 依存関係のインストールに関する問題 | - ‘git’ 実行ファイルが見つからない - git-lfs: コマンドが見つからない - リポジトリが見つからない - [Could not read Username: terminal prompts disabled] メッセージ(#prompts-disabled) - Git バージョンをアップデートできない |
Asset Store パッケージ (My Assets) | - ‘Failed to parse Http response’ メッセージが My Assets コンテキストに表示される |
スコープ付きのレジストリー | - Package Manager ウィンドウに ‘My Registries’ が表示されない |
パッケージビルド時の問題 | - Missing MonoBehaviour エラーメッセージ - Windows 上の hostfxr.dll のロードエラー |
You can also run the Unity Package Manager Diagnostics tool if you are experiencing problems that might be network-related. For more information, see Diagnose network issues.
The Package Manager displays error indicators in the Package Manager window when it encounters problems.
Network connection issues
Error messages appear in the status bar when the Package Manager has detected an issue that isn’t related to a specific package. For example, if the Package Manager can’t access the package registry server, it displays this message in the status bar:
Error refreshing assets (or Error refreshing packages)
If your network can’t reach the package registry server, it’s probably because there is a connection problem with the network. When you or your system administrator diagnose and fix the network error, the status bar clears.
If your network connection is working, but you aren’t signed into your Unity account, the Package Manager doesn’t display any Asset Store packages. When you try to use the My Assets context, the Package Manager displays an error in the status bar:
Click the Sign in button inside the list view to sign into your Unity account through the Unity Hub.
If a specific package has a problem when loading or installing (for example, when determining which package versions to load), the error icon () appears in the package list next to the compromised package (A). To find out what the problem is, open the compromised package’s details view to see the detailed error message (B):
Package Manager ウィンドウが画面外に移動したり、他のウィンドウに隠れてしまうことがあります。このような場合には Package Manager ウィンドウを開くのに失敗したように見えます。この場合、ウィンドウのレイアウトをリセットして (Window > Layouts > Default)、Package Manager ウィンドウを再度開いてみてください。
それでもPackage Manager ウィンドウが表示されない場合は、Unity Console ウィンドウを確認してください。
Failed to resolve packages: The file [<project-path>/Packages/manifest.json] is not valid JSON:
Unexpected token '}' at 44:1
}
このエラーメッセージは、manifest.json
ファイルが不正な形式であることを示しています。また、Package Manager がファイルの解析に失敗した行番号も表示されるので、JSON を修正することができます。問題を修正するために利用できるオンラインバリデーターは多くあります。修正したファイルを保存すると、Unity は Package Manager ウィンドウを再ロードします。
Unity エディターの古いバージョンからアップグレードした場合、パッケージマニフェストファイルの他の問題の場合があります。
2019.3 以降、manifest.json
ファイルに com.unity.package-manager-ui への参照を含めるべきではありません。プロジェクトのパッケージ設定をリセット するか、マニフェストの依存関係リストから以下の行を削除します。
"com.unity.package-manager-ui": "2.1.1",
プロジェクトマニフェストがパッケージバージョンとして “exclude” を使用していないかを確認してください。これは、依存関係 プロパティの廃止になった値です。このような行が見つかった場合は、行全体を削除してください。Package Manager は、プロジェクトに依存関係として明示的に含まれるパッケージのみをインストールするため、一度登録を削除すると、Package Manager はそのパッケージを無視し、インストールしません。
それでも Package Manager の読み込みに失敗する場合は、パッケージが認識されない と プロジェクトのパッケージ設定のリセット の手順に従ってください。
プロジェクトを新しい Unity バージョンにアップグレードすると、Package Manager は、互換性のないパッケージを新しい互換バージョンに自動的に更新します。ただし、Unity がパッケージをコンパイルできない場合、Package Manager はコンソールにエラーメッセージを表示します。
これらのメッセージを修正するには、エラーメッセージを読み、可能な限り問題を修正します。たとえば、パッケージに別のパッケージまたはバージョンへの依存関係がない場合があります。その場合は、自身でパッケージをインストールしてみてください。
使用できるものが見つかるまで、以下の一連の解決法を試すこともできます。
Packages
フォルダーを削除します。Packages
フォルダー内のパッケージソースを削除し、manifest.json
ファイルのみを残します。次に、プロジェクトを再ロードしてください。Library/PackageCache/com.unity.package-manager-ui@<version>
フォルダーを、新しく作成したプロジェクトの同じフォルダーと置き換えます。プロジェクトのパッケージの問題が多すぎる場合は、プロジェクトをリセットして、Unity のエディターバージョンのデフォルトのパッケージ設定に戻すことができます。この操作により、プロジェクト内のすべてのパッケージがリセットされます。これによって問題の原因を修正することはできないかもしれませんが、問題が何であるかを理解するのに役立ちます。
ノート: パッケージ設定のリセットを取り消すことはできません。そのため、最初に manifest.json
ファイルをバックアップするか、プロジェクトがソース管理下にあることを確認してください。また、先に進む前にプロジェクトの複製を作成し、クローンの操作をテストすることで、追加の予防措置を取ることができます。
デフォルトのパッケージ設定に戻すには、Help メニューから Reset Packages to defaults を選択します。
最終的な変更を実行する前に、デフォルトパッケージへ戻すことをテストすることもできます。
プロジェクトフォルダーをコピーし、名前を変更して見つけやすくします (例えば、プロジェクトの名前が MyProject
の場合、clone_MyProject
などを使用します)。
新しくコピーして作られたプロジェクトをロードします。
Help メニューから、Reset Packages to defaults を選択します。
プロジェクトのサイズによっては、数分かかる場合があります。
パッケージが正常にリセットされたことを確認します。正常にリセットされれば、元のプロジェクトで安全に操作を実行できます。
レジストリから新しいパッケージをインストールしようとしても機能しない場合は、許可の問題が原因である可能性があります。
You must have full permissions on the cache folder:
C:\Users\yourname\AppData\Local\Unity\cache
~/Library/Unity/cache
~/.config/unity3d/cache
ネットワークに問題がある可能性があります。 ファイアウォール と プロキシ の設定を確認してください。
学校、官公庁、またはネットワークで保護された職場などの組織環境では、プロキシサーバーを設定してネットワークとインターネット間のトラフィックを制御しているために、Unity または Package Manager で認識されない独自のサーバー証明書を使用する場合があります。 ネットワーク管理者に相談してください。
多くのコンパイルエラーが表示される場合、Unity が既存のプロジェクトのパッケージを認識していないことを示している可能性があります。この場合、.NET コンポーネントが欠落している可能性があります。
Windows の場合
MacOS の場合
.NET SDK v2.2.101 コンポーネントをダウンロードしてインストールします。
推奨される更新プログラムを Visual Studio にインストールします。
Homebrew を使用して、mono を作成してインストールします。
brew update
brew install mono # optional
brew upgrade mono
必要な場合は、プロジェクトの Library/obj/temp
フォルダーを削除し、Unity を再起動します。
それでも、問題が解決しない場合は、コンピューターも再起動します。
See Repository not found.
If your installation drive is out of space or low on space, consider changing the location of the package caches:
This message can appear when you fetch a Unity package from a scoped registry. Unity signs packages that it creates, except for older packages, which aren’t necessarily re-signed in later releases. If you copy an unsigned Unity package from a scoped registry to another registry, Package Manager can’t determine if the package content is safe and identical to the original package.
If you encounter this message, try these solutions:
Packages have a signature to ensure that the content wasn’t changed before or during transit. An invalid signature typically occurs in the following situations:
In both cases, Package Manager considers the package to be potentially malicious.
When you encounter an invalid signature, you can try to install a different version of the package. You should also avoid using Unity packages from a registry other than the Unity Registry.
If you are sharing a Unity package that contains a fix, consider using a Git URL or embedding the package in your project.
Git の URL からパッケージをインストールしようとすると、以下のようなメッセージが表示されます。
Cannot perform upm operation: Unable to add package
[https://github.example.com/myuser/myrepository.git]:
No 'git' executable was found. Please install Git on your system and restart Unity [NotFound]
UnityEditor.EditorApplication:Internal_CallUpdateFunctions()
Git LFS (Large File Storage) を使用するパッケージをダウンロードしようとすると、次のようなエラーメッセージが表示されることがあります。
Error when executing git command. git-lfs filter-process: command not found.
これは、マシンに Git LFS がインストールされていないことを示しています。確認のため、コマンドラインでテストしてみましょう。
git lfs --version
以下のに似た表示であれば、Git LFS がインストールされています。
git-lfs/2.8.0 (GitHub; darwin amd64; go 1.12.7)
そうでない場合は、Bitbucket と GitHub の手順に従ってインストールできます。
存在しない場所を指定すると、Unity コンソール に以下のようなメッセージが表示されます。
Cannot perform upm operation: Unable to add package [https://mycompany.github.com/gitproject/com.mycompany.mypackage.git]:
Error when executing git command. fatal: repository 'https://mycompany.github.com/gitproject/com.mycompany.mypackage.git/' not found
[NotFound]
UnityEditor.EditorApplication:Internal_CallUpdateFunctions() (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorApplication.cs:310)
入力を確認してください。正しい URL を使用していることを確認するには、リポジトリのページに移動し、Clone ボタンから URL をコピーします 。
GitHub (A) または GitLab (B) の URL の右にあるボタンをクリックして、URL をクリップボードにコピーします。
リポジトリの場所が正しい場合は、URL に別の問題があるかもしれません。
https://github.example.com/myuser/myrepository1.git#revision
path
クエリパラメーターがあることを確認してください。https://github.example.com/myuser/myrepository.git?path=/example/folder#v1.2.3
認証を必要とするプライベートリポジトリからパッケージをインストールしようとすると、Unity コンソールに以下のようなメッセージが表示されます。
Cannot perform upm operation: Unable to add package [https://mycompany.github.com/gitproject/com.mycompany.mypackage.git]:
Error when executing git command. fatal: could not read Username for 'https://mycompany.github.com': terminal prompts disabled
[NotFound]
UnityEditor.EditorApplication:Internal_CallUpdateFunctions() (at /Users/builduser/buildslave/unity/build/Editor/Mono/EditorApplication.cs:310)
このメッセージは、Package Manager に、HTTP のユーザー名とパスワードを入力するためのインタラクティブなターミナルやダイアログ、または SSH キーをアンロックするためのパスフレーズがおそらくないことを示しています。
** HTTP(S)** で、BitBucket、GitHub、GitLab にログオンするたびに、ターミナルやダイアログボックスでユーザー名とパスワードを入力する必要があります。ただし、Package Manager は、HTTP(S) のユーザー名とパスワードを入力できるインタラクティブなターミナルやダイアログを提供しません。
この問題を回避するには、HTTPS の解決策 で提案されている回避策のいずれかを使用してください。
** SSH** は、パブリックとプライベートの SSH キーのペアを使用します。公開 SSH キーをBitbucket、GitHub、GitLab のいずれかに追加することで、ユーザー名とパスワードを入力することなく、リポジトリにアクセスすることができます。
ただし、SSH キーを安全に保つためにパスフレーズを設定している場合、キーを認証するために、ターミナルやダイアログボックスでそのパスフレーズを入力する必要があります。その場合は、SSH エージェント を使って SSH キーのロック解除を行い、Package Manager で認証することができます。
Package Manager には、HTTP(S) のユーザー名とパスワードを入力するためのインタラクティブなターミナルやダイアログがありません。そのため、以下の回避策のいずれかを使用します。
If you use the SSH protocol to install a package by Git URL, you might get an authentication error from Git. This typically happens when you set up a private SSH key on your local machine that is protected by a passphrase.
この問題を解決するには、SSH キーを解除する SSH エージェントを設定し Package Manager で認証できるようにします。使用するオペレーティングシステムに対応する説明に従ってください。
Windows ネイティブの OpenSSH バージョンの ssh-agent は、Git for Windows でデフォルトで提供されているバージョンよりもうまく動作します。ここでは、OpenSSH クライアントを設定し、その ssh-agent にキーを加える方法を説明します。Git for Windows を使用している場合は、Git for Windows の SSH エージェントよりもネイティブの Windows OpenSSH を優先させることもできます。
Make sure the OpenSSH Client is installed. To do this, search for it in the Windows Settings Optional features window (Start > Settings, then search for “Optional features”). This applies to Windows 10+.
%PATH%
環境変数を確認して、ネイティブの Windows OpenSSH の場所が表示されていることを確認してください (例えば、C:WINDOWS\System32\OpenSSH\
)。
ノート: すでに Git for Windows を使っている場合は、 %PATH%
変数で、ネイティブの Windows OpenSSH の場所が Git for Windows の SSH の場所よりも前に表示されることを確認してください。こうすることにより、Windows は Git for Windows の SSH エージェントよりもネイティブの Windows OpenSSH エージェントを使うようになります。
PowerShell ターミナルで、ssh-agent
プロセスを開始し、自動的に開始されることを確認します。
# Set the ssh-agent service to start automatically and manually start it now
Get-Service ssh-agent | Set-Service -StartupType Automatic
# Run the ssh-agent process to start the ssh-agent service
ssh-agent
Import your key into the ssh-agent. To do this, run ssh-add
on the command line and then follow the instructions. By default, the agent adds the %USERPROFILE%\.ssh\id_rsa
key and prompts you for the password.
# key
ssh-add のインポート
別のキーを使用するには、それを引数として指定します。
# ssh-agent サービスを設定して自動的に起動するように設定し、今から手動で起動します。
ssh-add <your-secure-ssh-key-name>
キーの名前を忘れた場合は、エージェントに列挙してもらうことができます。
ssh-add -l
Windows 版の Git をインストールした場合は、%GIT-SSH%
環境変数をリセットして、Git が常にネイティブの Windows OpenSSH バージョンの ssh-agent を使用するようにします。
[Environment]::SetEnvironmentVariable("GIT_SSH", "$((Get-Command ssh).Source)", [System.EnvironmentVariableTarget]::User)
Use the ssh-add
command to add your SSH keys to the ssh-agent running on your macOS system. The command parameter you use depends on your version of macOS:
Prior to macOS 12, use:
ssh-add -K ~/.ssh/<your-secure-ssh-key-name>
Starting with macOS 12, use:
ssh-add --apple-use-keychain ~/.ssh/<your-secure-ssh-key-name>
このコマンドを実行すると、ターミナルが SSH キーのロックを解除するためのパスワードを要求し、そのキーを macOS のキーチェーンに追加します。ただし、システムを再起動すると、ssh-agent に保存されているすべてのキーがリセットされます。
To make sure you don’t need to re-enter your password after you restart your system, open the ~/.ssh/config
file (or create one if you don’t find it), and add the following:
Host *
UseKeychain yes
AddKeysToAgent yes
IdentityFile ~/.ssh/<your-secure-ssh-key-name>
マシンを再起動して、これらの変更を適用させます。
Git の依存関係をリポジトリから新しいバージョンに更新しようとしているのにうまくいかない場合は、Git の依存関係が ロック されていることが原因と考えられます。Git の依存関係をリポジトリからより新しいバージョンに更新したい場合は、Add package from git URL ボタンを使用して、Git URL を入力します。詳細については、ロックされた Git の依存関係 を参照してください。
If you see the following message in the Console window when you try to download an Asset Store package, there might be a problem with your Asset Store cache:
[PackageManager] Error Failed to parse response. UnityEditor.AsyncHTTPClient![:D](https://forum.unity.com/styles/default/xenforo/clear.png)one(State, Int32)
To solve this problem, delete all downloaded assets from the Asset Store package directory and then try to download the assets again.
Warning: If your project contains a lot of asset data, it might take a lot of time and bandwidth to re-download everything.
すべてのレジストリプロバイダーに Unity の Package Manager との互換性があるわけではありません。追加したパッケージレジストリサーバーが /-/v1/search
または /-/all
のエンドポイントを実装していない場合、スコープ付きレジストリ は Unity の Package Manager と互換性がなく、Package Manager ウィンドウの My Registries コンテキストに表示されません。
ビルド中に Missing Behavior のエラーが多発する場合、UnityLinker が参照しないと思ったコンポーネントを誤って除去している可能性があります。これは、ストリッピングのレベルが強すぎるために起こります。たとえば、2D SpriteShape パッケージの SpriteShape コンポーネントを参照するプレハブが AssetBundle 内にある場合、そのオブジェクトが見つからず、コンパイラー警告が発生することがあります。
この問題を解決するには、UnityLinker のストリッピングレベルを下げるか、パッケージのアセンブリを link.xml
ファイル内で宣言して、ストリッピングされないようにします。
<linker>
<assembly fullname="Unity.2D.SpriteShape.Runtime" preserve="all"/>
<assembly fullname="Unity.2D.Common.Runtime" preserve="all"/>
</linker>
ストリッピングレベルと UnityLinker の詳細については、マネージコードストリッピング を参照してください。
コンソールが hostfxr.dll
ライブラリが見つかったが、Unity が C:\<path_to_app>\hostfxr.dll
からのロードに失敗したと報告した場合、Windows 7 または Windows Server 2008 R2 では KB2999226 と KB2533623 の両パッチをインストールすることでこのエラーを修正できます。