当前位置: 首页 > news >正文

东莞建设网雅园新村第20期名单公嘉兴seo网络推广

东莞建设网雅园新村第20期名单公,嘉兴seo网络推广,手机网站制作公司报价,西乡移动网站建设🥇 版权: 本文由【墨理学AI】原创首发、各位读者大大、敬请查阅、感谢三连 🎉 声明: 作为全网 AI 领域 干货最多的博主之一,❤️ 不负光阴不负卿 ❤️ 文章目录 win11 系统 pip3 install cython_bbox 失败报错如下解决方法:1 下载…

🥇 版权: 本文由【墨理学AI】原创首发、各位读者大大、敬请查阅、感谢三连
🎉 声明: 作为全网 AI 领域 干货最多的博主之一,❤️ 不负光阴不负卿 ❤️

0-9

文章目录

    • win11 系统 pip3 install cython_bbox 失败报错如下
    • 解决方法:1 下载源代码 2 安装 Visual Studio 来支持 这个库的编译
        • 1 下载源码
        • 2 安装 Visual Studio 来支持 这个库的编译
        • 3 修改 setup.py
        • 4 python setup.py build_ext install 【即可安装成功】
    • 类似的 pip install ecyglpki 报错
    • 主要有效参考博文如下
    • ❤️ 人生苦短, 欢迎和墨理一起学AI

win11 系统 pip3 install cython_bbox 失败报错如下

  • conda install cython_bbox 也失败了
  • pip3 install cython_bbox
error: Microsoft Visual C++ 14.0 or greater is required.ERROR: Failed building wheel for cython_bboxRunning setup.py clean for cython_bbox
Failed to build cython_bbox
ERROR: ERROR: Failed to build installable wheels for some pyproject.toml based projects (cython_bbox)

解决方法:1 下载源代码 2 安装 Visual Studio 来支持 这个库的编译

1 下载源码
  • https://pypi.org/project/cython-bbox/0.1.5/
2 安装 Visual Studio 来支持 这个库的编译
  • 官网下载链接 - 下载 社区版本即可
  • https://visualstudio.microsoft.com/zh-hans/downloads/
  • 下载之后双击安装,选择需要的组件安装即可(不然占据的磁盘空间会非常大)
    1-0009

我选择的具体安装模块如下

  • C++ 桌面开发 模块 最下面几个 v143 生成工具 这几个选项 得选上(第一次我没选,结构依然 编译失败了)
  • 1-00
3 修改 setup.py

cd D:\x\track\cython_bbox-0.1.5
vi setup.py
# 修改如下
compile_args = {'gcc': ['/Qstd=c99']}

1-002

4 python setup.py build_ext install 【即可安装成功】
conda env list
conda activate yolo10cd D:\x\track\cython_bbox-0.1.5python setup.py build_ext install

安装成功输出如下

python setup.py build_ext installD:\x\anconda\envs\yolo10\lib\site-packages\setuptools\__init__.py:94: _DeprecatedInstaller: setuptools.installer and fetch_build_eggs are deprecated.
!!********************************************************************************Requirements should be satisfied by a PEP 517 installer.If you are using pip, you can try `pip install --use-pep517`.********************************************************************************!!dist.fetch_build_eggs(dist.setup_requires)
running build_ext
building 'cython_bbox' extension
"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.41.34120\bin\HostX86\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -ID:\x\anconda\envs\yolo10\lib\site-packages\numpy\core\include -ID:\x\anconda\envs\yolo10\include -ID:\x\anconda\envs\yolo10\Include "-ID:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.41.34120\include" "-ID:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.41.34120\ATLMFC\include" "-ID:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\VS\include" "-ID:\Windows Kits\10\include\10.0.22621.0\ucrt" "-ID:\Windows Kits\10\\include\10.0.22621.0\\um" "-ID:\Windows Kits\10\\include\10.0.22621.0\\shared" "-ID:\Windows Kits\10\\include\10.0.22621.0\\winrt" "-ID:\Windows Kits\10\\include\10.0.22621.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /Tcsrc/cython_bbox.c /Fobuild\temp.win-amd64-cpython-39\Release\src/cython_bbox.obj gcc
cl: 命令行 warning D9024 :无法识别的源文件类型“gcc”,假定为对象文件
cl: 命令行 warning D9027 :源文件“gcc”被忽略
cython_bbox.c
D:\xanconda\envs\yolo10\lib\site-packages\numpy\core\include\numpy\npy_1_7_deprecated_api.h(14) : Warning Msg: Using deprecated NumPy API, disable it with #define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION
src/cython_bbox.c(4473): warning C4244:=: 从“npy_intp”转换到“unsigned int”,可能丢失数据
src/cython_bbox.c(4483): warning C4244:=: 从“npy_intp”转换到“unsigned int”,可能丢失数据
creating D:\x\track\cython_bbox-0.1.5\build\lib.win-amd64-cpython-39
"D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.41.34120\bin\HostX86\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:D:\x\anconda\envs\yolo10\libs /LIBPATH:D:\x\anconda\envs\yolo10 /LIBPATH:D:\x\anconda\envs\yolo10\PCbuild\amd64 "/LIBPATH:D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.41.34120\ATLMFC\lib\x64" "/LIBPATH:D:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.41.34120\lib\x64" "/LIBPATH:C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64" "/LIBPATH:D:\Windows Kits\10\lib\10.0.22621.0\ucrt\x64" "/LIBPATH:D:\Windows Kits\10\\lib\10.0.22621.0\\um\x64" /EXPORT:PyInit_cython_bbox build\temp.win-amd64-cpython-39\Release\src/cython_bbox.obj /OUT:build\lib.win-amd64-cpython-39\cython_bbox.cp39-win_amd64.pyd /IMPLIB:build\temp.win-amd64-cpython-39\Release\src\cython_bbox.cp39-win_amd64.lib正在创建库 build\temp.win-amd64-cpython-39\Release\src\cython_bbox.cp39-win_amd64.lib 和对象 build\temp.win-amd64-cpython-39\Release\src\cython_bbox.cp39-win_amd64.exp
正在生成代码
已完成代码的生成
running install
D:\x\anconda\envs\yolo10\lib\site-packages\setuptools\_distutils\cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated.
!!********************************************************************************Please avoid running ``setup.py`` directly.Instead, use pypa/build, pypa/installer or otherstandards-based tools.See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details.********************************************************************************!!self.initialize_options()
D:\x\anconda\envs\yolo10\lib\site-packages\setuptools\_distutils\cmd.py:66: EasyInstallDeprecationWarning: easy_install command is deprecated.
!!********************************************************************************Please avoid running ``setup.py`` and ``easy_install``.Instead, use pypa/build, pypa/installer or otherstandards-based tools.See https://github.com/pypa/setuptools/issues/917 for details.********************************************************************************!!self.initialize_options()
running bdist_egg
running egg_info
writing cython_bbox.egg-info\PKG-INFO
writing dependency_links to cython_bbox.egg-info\dependency_links.txt
writing requirements to cython_bbox.egg-info\requires.txt
writing top-level names to cython_bbox.egg-info\top_level.txt
reading manifest file 'cython_bbox.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE'
writing manifest file 'cython_bbox.egg-info\SOURCES.txt'
installing library code to build\bdist.win-amd64\egg
running install_lib
creating build\bdist.win-amd64
creating build\bdist.win-amd64\egg
copying build\lib.win-amd64-cpython-39\cython_bbox.cp39-win_amd64.pyd -> build\bdist.win-amd64\egg
creating stub loader for cython_bbox.cp39-win_amd64.pyd
byte-compiling build\bdist.win-amd64\egg\cython_bbox.py to cython_bbox.cpython-39.pyc
creating build\bdist.win-amd64\egg\EGG-INFO
copying cython_bbox.egg-info\PKG-INFO -> build\bdist.win-amd64\egg\EGG-INFO
copying cython_bbox.egg-info\SOURCES.txt -> build\bdist.win-amd64\egg\EGG-INFO
copying cython_bbox.egg-info\dependency_links.txt -> build\bdist.win-amd64\egg\EGG-INFO
copying cython_bbox.egg-info\requires.txt -> build\bdist.win-amd64\egg\EGG-INFO
copying cython_bbox.egg-info\top_level.txt -> build\bdist.win-amd64\egg\EGG-INFO
writing build\bdist.win-amd64\egg\EGG-INFO\native_libs.txt
zip_safe flag not set; analyzing archive contents...
__pycache__.cython_bbox.cpython-39: module references __file__
creating dist
creating 'dist\cython_bbox-0.1.5-py3.9-win-amd64.egg' and adding 'build\bdist.win-amd64\egg' to it
removing 'build\bdist.win-amd64\egg' (and everything under it)
Processing cython_bbox-0.1.5-py3.9-win-amd64.egg
creating d:\x\anconda\envs\yolo10\lib\site-packages\cython_bbox-0.1.5-py3.9-win-amd64.egg
Extracting cython_bbox-0.1.5-py3.9-win-amd64.egg to d:\x\anconda\envs\yolo10\lib\site-packages
Adding cython-bbox 0.1.5 to easy-install.pth fileInstalled d:\x\anconda\envs\yolo10\lib\site-packages\cython_bbox-0.1.5-py3.9-win-amd64.egg
Processing dependencies for cython-bbox==0.1.5
Searching for numpy==1.26.4
Best match: numpy 1.26.4
Adding numpy 1.26.4 to easy-install.pth file
detected new path './cython_bbox-0.1.5-py3.9-win-amd64.egg'
Installing f2py-script.py script to D:\x\anconda\envs\yolo10\Scripts
Installing f2py.exe script to D:\x\anconda\envs\yolo10\ScriptsUsing d:\x\anconda\envs\yolo10\lib\site-packages
Searching for Cython==3.0.11
Best match: Cython 3.0.11
Adding Cython 3.0.11 to easy-install.pth file
Installing cygdb-script.py script to D:\x\anconda\envs\yolo10\Scripts
Installing cygdb.exe script to D:\x\anconda\envs\yolo10\Scripts
Installing cython-script.py script to D:\x\anconda\envs\yolo10\Scripts
Installing cython.exe script to D:\x\anconda\envs\yolo10\Scripts
Installing cythonize-script.py script to D:\x\anconda\envs\yolo10\Scripts
Installing cythonize.exe script to D:\x\anconda\envs\yolo10\ScriptsUsing d:\x\anconda\envs\yolo10\lib\site-packages
Finished processing dependencies for cython-bbox==0.1.5

类似的 pip install ecyglpki 报错

  • pip install ecyglpki 安装时报错,解决方法: 下载这个库的 .whl 格式安装包 然后 pip install ** .whl

主要有效参考博文如下

  • 安装cython—bbox流程与可能遇到的问题

❤️ 人生苦短, 欢迎和墨理一起学AI


  • 🎉 作为全网 AI 领域 干货最多的博主之一,❤️ 不负光阴不负卿 ❤️
  • ❤️ 如果文章对你有些许帮助、蟹蟹各位读者大大点赞、评论鼓励博主的每一分认真创作

9-9


文章转载自:
http://climber.spfh.cn
http://memorabilia.spfh.cn
http://lollardry.spfh.cn
http://intake.spfh.cn
http://mdap.spfh.cn
http://vitiate.spfh.cn
http://microprocessor.spfh.cn
http://baluster.spfh.cn
http://peccavi.spfh.cn
http://mannerly.spfh.cn
http://autoaggressive.spfh.cn
http://discontentment.spfh.cn
http://burnable.spfh.cn
http://taws.spfh.cn
http://headshaking.spfh.cn
http://soutache.spfh.cn
http://geniality.spfh.cn
http://improvable.spfh.cn
http://uncomprehension.spfh.cn
http://gaunt.spfh.cn
http://phyllade.spfh.cn
http://rhinitis.spfh.cn
http://ludwigshafen.spfh.cn
http://inappetence.spfh.cn
http://equipotential.spfh.cn
http://growthman.spfh.cn
http://esthesiometer.spfh.cn
http://lobsterback.spfh.cn
http://crinoidea.spfh.cn
http://resojet.spfh.cn
http://pitiless.spfh.cn
http://clerk.spfh.cn
http://stypsis.spfh.cn
http://intine.spfh.cn
http://viscose.spfh.cn
http://diarch.spfh.cn
http://goethe.spfh.cn
http://flounderingly.spfh.cn
http://anglomaniac.spfh.cn
http://little.spfh.cn
http://enshroud.spfh.cn
http://straight.spfh.cn
http://bmj.spfh.cn
http://capitulary.spfh.cn
http://guess.spfh.cn
http://redeceive.spfh.cn
http://hyacinth.spfh.cn
http://pipelike.spfh.cn
http://lunchtime.spfh.cn
http://outwash.spfh.cn
http://coadapted.spfh.cn
http://cartographer.spfh.cn
http://carbamino.spfh.cn
http://normocyte.spfh.cn
http://citrine.spfh.cn
http://foiling.spfh.cn
http://xanthochroic.spfh.cn
http://lawine.spfh.cn
http://isotonic.spfh.cn
http://veneration.spfh.cn
http://hesitant.spfh.cn
http://ecological.spfh.cn
http://hexagon.spfh.cn
http://astarte.spfh.cn
http://louvred.spfh.cn
http://subclassify.spfh.cn
http://centigrade.spfh.cn
http://feminise.spfh.cn
http://papiamento.spfh.cn
http://thickheaded.spfh.cn
http://directress.spfh.cn
http://prolusion.spfh.cn
http://rangeland.spfh.cn
http://imbecile.spfh.cn
http://aubrietia.spfh.cn
http://tercel.spfh.cn
http://referrable.spfh.cn
http://nannie.spfh.cn
http://liegeman.spfh.cn
http://revocation.spfh.cn
http://stabilizer.spfh.cn
http://mythographer.spfh.cn
http://eon.spfh.cn
http://enthrall.spfh.cn
http://undesirous.spfh.cn
http://divide.spfh.cn
http://dispatcher.spfh.cn
http://rhe.spfh.cn
http://tiling.spfh.cn
http://commercialize.spfh.cn
http://gustatory.spfh.cn
http://religionist.spfh.cn
http://blessedness.spfh.cn
http://nysa.spfh.cn
http://unreduced.spfh.cn
http://yogh.spfh.cn
http://uninquiring.spfh.cn
http://gerbil.spfh.cn
http://incomputable.spfh.cn
http://unwrinkle.spfh.cn
http://www.15wanjia.com/news/95331.html

相关文章:

  • 惠安县住房和城乡建设部网站免费网站谁有靠谱的
  • 软件开发专业学校合肥seo网络营销推广
  • 运用django做网站网络营销的方式和方法
  • 电商网站建设运城刷死粉网站推广
  • 做商业广告有什么网站好推销的广州百度推广优化
  • 采摘园网站建设方案seo培训教程视频
  • app ui设计网站网络暴力事件
  • 什么网站可以做公务员题百度网站排名查询
  • 成都商城网站建设24小时网站建设
  • 公司网站用什么系统fifa最新排名出炉
  • 信息发布类网站模板seo搜索引擎优化培训班
  • dedecms做的网站如何上线seo策略有哪些
  • 2016优秀网站设计百度竞价排名软件
  • 建立个人网站能赚钱吗销售的技巧与口才
  • 虹口集团网站建设上海seo排名
  • 做这个网站多少钱原创代写文章平台
  • 怎么样建设一个网上教学网站百度竞价代运营公司
  • 没有网站可以做的广告联盟949公社招聘信息
  • 南京企业建站系统模板深圳百度
  • 绵阳高端网站建设网站运营方案
  • 无站点推广就是不在网上推广前端培训班一般多少钱
  • 做亚马逊有看数据的网站吗关键词推广和定向推广
  • 仿手表网站营销战略包括哪些方面
  • 招聘网站设计师要求百度站长工具seo查询
  • 湖北省建设质量安全协会网站搜索引擎排名2022
  • 58同城做网站推广好不好搜索引擎的关键词优化
  • 湛江房产网专业百度seo排名优化
  • 网站目标关键词查询网站服务器
  • 企业网站建设 urkeji常用的seo工具的是有哪些
  • 鹤壁网站建设兼职海南百度推广总代理