/hpcfile/users/test004/.jhjobs/1685606647.3652.1.shell: line 7: /hpcfile/jhinno/unischeduler/conf/jobstart/unisched: No such file or directory CondaValueError: prefix already exists: /share/software/anaconda3/envs/tensorflow 2023-06-01 16:04:52.498920: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 AVX512F FMA 2023-06-01 16:04:52.626381: I tensorflow/core/common_runtime/process_util.cc:69] Creating new thread pool with default inter op setting: 2. Tune using inter_op_parallelism_threads for best performance.
时间: 2023-08-27 07:06:30 浏览: 170
这是一个包含多个错误信息的日志,其中第一行提示找不到文件或目录,可能是指定的脚本或命令不存在。接下来的一行是CondaValueError,提示指定的环境路径已经存在,可能是之前已经创建过同名的环境。最后几行是TensorFlow的信息,提示该二进制文件没有使用CPU的某些指令,以及正在创建新的线程池。开发者需要对这些错误信息进行逐一排查,找出问题所在并进行修复。
相关问题
source /hpcfile/jhinno/unischeduler/conf/jobstart/unisched source /share/software/anaconda3/etc/profile.d/conda.sh conda create -n tensorflow python=3.8 #利用Anaconda创建一个python3.8的环境 conda activate tensorflow
这是一个在 Linux 系统中使用 Anaconda 创建一个名为 tensorflow 的 Python 3.8 环境的命令。首先,它调用了 /hpcfile/jhinno/unischeduler/conf/jobstart/unisched 脚本,然后加载了 Anaconda 的环境变量。接着,它使用 conda 命令创建名为 tensorflow 的新环境,并指定 Python 版本为 3.8。最后,它使用 conda activate 命令激活 tensorflow 环境,使用户可以在该环境中运行 Python 和 TensorFlow 等软件包。
阅读全文