*** cuDNN V5.0 OR GREATER NOT FOUND. DLIB WILL NOT USE CUDA. ***

2024年12月23日

https://github.com/davisking/dlib/issues/2108

CUDNNをインストールした後、ライブラリとヘッダファイルをCUDAのフォルダにコピーすると回避できる
例えば
C:\Program Files\NVIDIA\CUDNN\v9.6\include\12.6\*.h –> C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\include
C:\Program Files\NVIDIA\CUDNN\v9.6\lib\12.6\x64\*.lib –> C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64

Android Studio でリモートデバッグのデバイスを追加(Pair New Device Over Wifi)できない

2024年12月13日

Problem with pairing device using wifi in android studio – Stack Overflow

adb をパスに追加する。(%ANDROID_HOME%\platform-tools、または %ANDROID_SDK_ROOT%\platform-tools、例えば C:\Users\<ユーザー名>\AppData\Local\Android\Sdk\platform-tools)

Explorerを再起動してAndroid Studioを開き、Android Stuidioでターミナルを開いて adb pair <ip_addr:port>

Android build error: java.lang.NullPointerException: Cannot invoke “String.length()” because “” is null

2024年12月13日

https://stackoverflow.com/questions/78615734/nullpointerexception-cannot-invoke-string-length-because-parameter1-is

https://stackoverflow.com/questions/77587376/cannot-invoke-string-length-because-parameter1-is-null

AGPのアップグレードで解決。

error C3699: ‘*’: cannot use this indirection on type ‘IServiceProvider’

2024年12月12日
https://stackoverflow.com/questions/51195379/large-amount-of-errors-regarding-iserviceprovider
using namespace System;
をコメントアウトすることで解決できた。

Sandbox: bash deny file-read-data /Scripts/copy-www-build-step.sh

2024年11月24日

XCodeのProject > Info > Build Options > User Script Sandboxing を No に設定することで解決

https://stackoverflow.com/questions/77660771/understanding-build-error-xcode-sandbox-bash30970-deny1-file-read-data

https://developer.apple.com/documentation/xcode/build-settings-reference#User-Script-Sandboxing

Error installing BoringSSL-GRPC error: RPC failed; curl 18 Transferred a partial file

2024年11月1日


https://stackoverflow.com/questions/77962714/pod-update-install-fails-at-installing-boringssl-grpc-0-0-24

git config --global http.postBuffer 100000M

を実行したのち pod install 再実行したが別のエラー

error: RPC failed; curl 92 HTTP/2 stream 5 was not closed cleanly: CANCEL (err 8)

が発生

Ignoring ffi-1.16.3 because its extensions are not built. Try: gem pristine ffi –version 1.16.3

その前に上記のメッセージがあったので

sudo gem pristine ffi –version 1.16.3

を実行、再度 pod install したところ解決

ネットワークが遅い場合は

https://github.com/desktop/desktop/issues/18972

XCode build error FIRFirestoresettings.mm ABSL_CONST_INIT An attribute list cannot appear here

2024年10月31日

https://github.com/firebase/firebase-ios-sdk/issues/11840


cordova-plugin-firebasex を10.0.0以降へアップデートして解決

XCodetls_record.cc unsupported option ‘-G’ for target ‘arm64-apple-ios9.0-simulator’

2024年10月31日

BoringSSL-GRPC/src/ssl/tls_record.cc unsupported option ‘-G’ for target ‘arm64-apple-ios9.0-simulator’

https://stackoverflow.com/questions/78608693/boringssl-grpc-unsupported-option-g-for-target-arm64-apple-ios15-0

私の今回のケースではPodfile への追加で解消

VSCode – Python venv が自動的にActivateされない。’.vscode’ フォルダもない

2024年10月15日

https://stackoverflow.com/questions/58433333/auto-activate-virtual-environment-in-visual-studio-code

まず Ctrl + Shift + P and enter Preferences: Open Workspace Settings (JSON)
を開く、そして settings.json に
“python.terminal.activateEnvironment”: true
を追加する

Python: PIL がみつからない

2024年10月12日

https://stackoverflow.com/questions/8863917/importerror-no-module-named-pil

‘pillow’ ではなく ‘Pillow’ をインストールする