在平时编程中感觉遇到的比较常见的问题

文章目录

  • Linux
  • Conda
  • 问题

Linux

查看当前文件夹中文件大小 ls -lh

Conda

在指定目录安装conda环境
conda create --prefix=/mnt/usrs/xinrun/conda/CDLM python=3.8

问题

module ‘numpy’ has no attribute ‘object’

Since version 1.24 of numpy, np.object is deprecated, and needs to be replaced with object (cf. numpy release notes).

You either need to update this in your code, or another package you’re using needs to be updated (not possible to answer without more information).

One (dirty) workaround for now would be to fix your numpy version to the last version still supporting np.object with pip install numpy==1.23.4

你可能感兴趣的:(python,python,深度学习,开发语言)