无法导入tensorflow_datasets(“不是mach-o文件”)

无法导入tensorflow_datasets(“不是mach-o文件”)

我刚刚为张量流设置了 Mac M1 环境,它似乎运行良好,我遇到的问题是设置张量流数据集。我通过在 conda 环境中运行它来安装它:

python -m pip install tensorflow-datasets

但是,当我尝试将其导入笔记本时,出现以下错误:

ImportError: dlopen(/Users/imadahmad/tensorflow-test/env/lib/python3.8/site-packages/array_record/python/array_record_module.so, 0x0002): tried: '/Users/imadahmad/tensorflow-test/env/lib/python3.8/site-packages/array_record/python/array_record_module.so' (not a mach-o file), '/System/Volumes/Preboot/Cryptexes/OS/Users/imadahmad/tensorflow-test/env/lib/python3.8/site-packages/array_record/python/array_record_module.so' (no such file), '/Users/imadahmad/tensorflow-test/env/lib/python3.8/site-packages/array_record/python/array_record_module.so' (not a mach-o file)

我需要重建文件使其成为 Mach-O 类型吗?我不完全确定为什么它没有运行 .so 文件,我可以在给定的目录中找到它。

相关内容