安装caiman的时候,根据官方教程,发现报如下错误:
2024-05-19 22:00:28.455425: E tensorflow/compiler/xla/stream_executor/cuda/cuda_dnn.cc:9342] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered
2024-05-19 22:00:28.455462: E tensorflow/compiler/xla/stream_executor/cuda/cuda_fft.cc:609] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered
2024-05-19 22:00:28.455470: E tensorflow/compiler/xla/stream_executor/cuda/cuda_blas.cc:1518] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered
经过多方测试,其实是GPT害得,提示说要清理系统里面的环境变量,以免有冲突的CUDA配置,比如多个CUDA版本之类的。
其实就是TensorFlow版本的锅,换到16.1就行了。
以下是我安装流程
conda clean --all
mamba create -n caiman -c conda-forge caiman pip python=3.