当前位置:   article > 正文

labelme在Anaconda安装中出现的问题及解决方案_typeerror: arguments did not match any overloaded

typeerror: arguments did not match any overloaded call: qpoint(): too many a

labelme在Ubuntu中Anaconda安装中出现的一些问题解决方案

安装labelme过程:

conda create --name=labelme python=3
conda activate labelme
pip install labelme
  • 1
  • 2
  • 3

问题一:报错Aborted (core dumped)

问题描述:

[INFO ] init:get_config:70 - Loading config file from: /home/XXX/.labelmerc
Traceback (most recent call last):
File “/home/XXX/fxp/envs/labelme/lib/python3.10/site-packages/labelme/widgets/canvas.py”, line 618, in paintEvent
p.translate(self.offsetToCenter())
File “/home/XXX/fxp/envs/labelme/lib/python3.10/site-packages/labelme/widgets/canvas.py”, line 659, in offsetToCenter
return QtCore.QPoint(x, y)
TypeError: arguments did not match any overloaded call:
QPoint(): too many arguments
QPoint(int, int): argument 1 has unexpected type ‘float’
QPoint(QPoint): argument 1 has unexpected type ‘float’
Aborted (core dumped)

解决方案:更换python版本

conda env remove -n labelme
conda create --name=labelme python=3.9
conda activate labelme
pip install labelme
  • 1
  • 2
  • 3
  • 4

问题二:上一步安装完后又出现了× Encountered error while trying to install package的问题

问题描述:

gcc -pthread -B /home/XXX/fxp/envs/labelme/compiler_compat -Wno-unused-
result -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -fPIC -O2 -isystem
/home/XXX/fxp/envs/labelme/include -fPIC -O2 -isystem
/home/XXX/fxp/envs/labelme/include -fPIC -DFREETYPE_BUILD_TYPE=system -
DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -
DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -
Iextern/agg24-svn/include -I/home/XXX/fxp/envs/labelme/lib/python3.10/site-
packages/numpy/core/include -I/home/XXX/fxp/envs/labelme/include/python3.10
-c src/checkdep_freetype2.c -o build/temp.linux-x86_64-cpython-
310/src/checkdep_freetype2.o
src/checkdep_freetype2.c:3:6: error: #error “FreeType version 2.3 or higher
is required. You may set the MPLLOCALFREETYPE environment variable to 1 to let
Matplotlib download it.”
#error "FreeType version 2.3 or higher is required.
^~~~~
src/checkdep_freetype2.c:10:10: error: #include expects “FILENAME” or

#include FT_FREETYPE_H ^~~~~~~~~~~~~ src/checkdep_freetype2.c:15:9: note: #pragma message: Compiling with FreeType version FREETYPE_MAJOR.FREETYPE_MINOR.FREETYPE_PATCH. #pragma message("Compiling with FreeType version " \ ^~~~~~~ src/checkdep_freetype2.c:18:4: error: #error "FreeType version 2.3 or higher is required. You may set the MPLLOCALFREETYPE environment variable to 1 to let Matplotlib download it." #error "FreeType version 2.3 or higher is required. \ ^~~~~ error: command '/usr/bin/gcc' failed with exit code 1 [end of output]

note: This error originates from a subprocess, and is likely not a problem with
pip.
error: legacy-install-failure

× Encountered error while trying to install package.
╰─> matplotlib

note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.

解决方案:安装对应依赖

sudo apt-get update
sudo apt-get install libfreetype6-dev
sudo apt-get install pkg-config
sudo apt-get install libpng-dev
sudo apt-get install pkg-config
  • 1
  • 2
  • 3
  • 4
  • 5

两步下来最终能够在ubuntu20.04的Anaconda中成功安装labelme!

参考链接:https://blog.csdn.net/qq_22764813/article/details/126489943

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/360456
推荐阅读
相关标签
  

闽ICP备14008679号