首页 > TAG信息列表 > distutils

在服务器节点上安装时报错: mujoco distutils.errors.CompileError: command '/usr/bin/x86_64-linux-gnu-gcc'

经过研究,很多人建议安装: sudo apt-get install libgl1-mesa-dev 包括之前在本地的ubuntu上进行安装时,遇到该问题也是使用同样的方法解决的。   但在服务器节点上,不能使用这种方法解决(因为在服务器节点上不容易安装),后经过研究发现,可以通过conda 配置环境,即可使用。

Python制作pypi包

执行打包命令 python setup.py bdist_wheel 用户根路径下创建~/.pypirc,填写如下配置: [distutils] index-servers=pypi [pypi] repository = https://upload.pypi.org/legacy/ username = pypi用户名 password = pypi用户密码

安装tensorflow时报错: Cannot uninstall ‘certifi‘. It is a distutils installed project and thus we cannot

安装tensorflow时报错: Cannot uninstall ‘certifi’. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall. 解决方案: 使用 pip install tensorflow --ignore-installed

python No module named numpy. distutils._msvccompiler in numpy. distutils; trying from distutils

在cmd 中输入 python setup.py install 报错:No module named numpy. distutils._msvccompiler in numpy. distutils; trying from distutils、 解决方法: 安装Visual Studio 2019 生成工具  选择安装c++生成工具  (根据python版本选择)   参考文章:https://wiki.python.org/mo

setuptools 和 distutils.core 的setup参数

setuptools 的setup参数Standard commands:   build             build everything needed to install  build_py          "build" pure Python modules (copy to build directory)  build_ext         build C/C++ and Cython extensions (compi

【已解决】Attempted to compile AOT function without the compiler used by `numpy.distutils` present ...

本文记录了在使用numba.pycc模块的过程中遇到的Attempted to compile AOT function without the compiler used by numpy.distutils present. Cannot find suitable msvc.问题的解决方法。 说一下博主的电脑环境:Win10系统,python3.7,numba0.51.2 出现问题的命令: from numba.pyc

ubuntu virtualenv虚拟环境搭建

ubuntu虚拟环境搭建 1、虚拟环境的安装 sudo pip install virtualenv 2、安装虚拟环境的扩展包 sudo pip install virtualenvwrapper 3、编辑家目录下面的bashrc文件,末尾添加 vi .bashrc(从home目录进入bashrc文件) export WORKON_HOME=$HOME.virtualenvs source /usr/local/bin/.

pip升级scapy报错It is a distutils installed project and thus we cannot accurately determine which files

今天在升级scapy的时候遇到的问题,搜索到解决问题的答案,为此记录,感谢博主。 尝试升级 pip install scapy --upgrade 报错 ERROR: Cannot uninstall ‘scapy’. It is a distutils installed project and thus we cannot accurately determine which files belong to it wh

如何获取distutils用于构建的arch字符串?

当我使用python setup.py build构建c扩展名时,将在名为目录的目录下创建结果 build/lib.linux-x86_64-2.6/ lib之后的部分.根据操作系统,CPU和Python版本进行更改. 有没有办法可以从python访问适合当前体系结构的字符串?希望以确保与distutils正在创建的内容匹配的方式.解决方法:

libtool python模块链接和安装

我使用自动工具处理用C语言编写的项目,该项目产生一个静态库.在同一项目的上下文中,Am还提供了与C API的Python接口.直到最近我才获得在项目中引入libtool的权限,以便能够以可移植的方式提供静态和动态库.到目前为止,我将使用distutils生成Python共享模块,并将python模块链接到项目

为多个OS X版本构建二进制python发行版

我试图在OS X上使用二进制模块构建python应用程序.我想为Lion的Snow Leopard和Leopard构建版本.我已经安装了带有10.5和10.6 SDK的XCode 4,并且一直在尝试使用设置为10.6的MACOSX_DEPLOYMENT_TARGET标志进行构建.我收到distutils的错误消息,抱怨python是使用其他部署目标构建的. 我

python-无法在OS X Lion中构建Cython / distutils.

我在互联网上到处都在寻找解决方案,但没有发现任何帮助. 我正在尝试使用Cython将C代码嵌入到我的python程序中. python setup.py build_ext --inplace 当我运行上面的代码时,它抱怨编译器,而不是gcc-4.0.我现在知道Lion上仅安装了gcc-4.2(python 2.7 32位).反正有没有得到4.0,我

用python包分发运行脚本的正确方法?

假设我有一个名为mypackage的python包,其中包含一系列脚本.将mypackage放在site-packages目录中后,用户可以像往常一样将mypackage中的各种Python文件称为Python的mypackage.submodule1,mypackage.submodule2.但是,其中一些脚本是从命令行调用的.例如在submodule1中,我有: == mypac

为C(指针)创建python的Swig包装器

我是swig的一个新手,我正在尝试创建一个swig包装器,以便在python中使用一些C文件.我有以下C类. 以下是我尝试转换的代码的片段: /*packet_buffer.h*/ class CPacketBuffer { public: // construct based on given buffer, data is not copied CPacketBuffer(uint8_t* data

使用Cython和distutilis方法从Python调用C代码

我正在尝试使用cython从python脚本调用c代码.我已经设法使用here的示例了,但问题是:我的c代码包括来自opencv的非标准库.我相信我没有正确链接它们,因此我需要有人来查看我的setup.py以及cpp_rect.h和cpp_rect.cpp文件. 我遇到的错误与* .cpp文件中的粗体行yn有关:cv :: Mat img1(7,7

python-setup.py构建有什么作用?

我读了Python documentation: The build command is responsible for putting the files to install into a build directory. 我担心此文档可能不完整. python setup.py build是否还有其他作用?我希望这一步将生成具有Python字节码的目标文件,该文件将在执行时由Python VM解释.

python-应用程序开发人员应如何使用setup.py和requirements.txt?

应用程序开发人员应在setup.py和requirements.txt中放置什么?应用程序甚至应该有setup.py吗? docs似乎仅涵盖编写模块的情况.但是在应用程序中,应该如何对包和模块依赖项进行编码?同时使用setup.py和requirements.txt吗? 我已经得到了一个带有一些可疑代码的2.7.8项目,但是我不确定这个

python-如何在cython中编译多个文件

Cybie的新手.我在名为setup.py的文件中使用以下代码段将另一个文件编译为Cython(SO用户在here上向我建议) from distutils.core import setup from distutils.extension import Extension from Cython.Distutils import build_ext ext_modules = [Extension('func1', ['util/func

我如何覆盖PBR中的要求?

我正在尝试将我的python代码与PBR(Python构建合理性)打包在一起.它通过一组约定为您生成需求元数据. The requirement files are tried in that order (N being the Python major version number used to install the package): requirements-pyN.txt tools/pip-requires-py3 req

如何使用python软件包分发字体?

我创建了一个名为clearplot的程序包,该程序包围绕着matplotlib.我还创建了一个不错的字体,希望随包一起分发.我查阅了《 Python打包用户指南》中的this section,并确定我应该使用data_files关键字.我选择使用data_files而不是package_data,因为我需要在程序包之外的matplotlib目录

在Python程序包中需要BeautifulSoup-setup.py需要什么?

我正在为python发行版foo编写安装脚本.我的代码需要BeautifulSoup,因此当前目录的结构如下: <root>/ setup.py __init__.py foo.py BeautifulSoup/ __init__.py BeautifulSoup.py etc. setup.py当前看起来像

python-具有可执行权限的package_data文件

我正在使用distutils创建Python(2)软件包安装程序.在我的程序包中有几个二进制可执行文件,这些二进制可执行文件是从我的Python代码调用的.我将这些作为package_data列出在我的setup.py文件中,以便它们与软件包一起安装.但是,在安装这些文件时,distutils不会在这些文件上复制可执行

python软件包-是否包含测试套件

主要问题是:我是否应在软件包中包含用于我的代码的测试套件?我并不是说既不是测试框架也不是测试工具(例如鼻子测试),而是我每次为了检查代码的正确性而运行的基本测试. 我一直在关注setuptools tutorial,我有两个模块:nac(代码本身)和测试. setup.py如下所示: setup( ... pac

pip安装:Cannot uninstall ''. It is a distutils installed project and thus we cannot accurate

在配置tensorflow的过程中,通过pip直接安装gpu版本时遇到了这个错误, 查了好长时间找不到解决办法,最终摸索出解决办法如下: 我遇到的错误: Cannot uninstall ‘wrapt’. It is a distutils installed project and thus we cannot accurately determine which files belong to

我可以使用VS2005为使用VS2003构建的Python系统构建扩展

RDFLib需要编译C扩展才能安装在ActiveState Python 2.5上;据我所知,在网络上任何明显的地方都没有二进制安装程序.尝试使用python setup.py install进行安装时,它会产生以下消息: 错误:Python是使用Visual Studio 2003构建的; 扩展必须使用编译器构建,才能生成兼容的二进制文件.在此系