Python:打包过程中出错



>我做了一个python包,我的项目目录看起来像这样:

MyProject
|-.pypirc
|- manifest.in
|- readme.rst
|- runnable.py # Main File
|- setup.py

问题是我在 runnable.py 中有像tkinter这样的库,这在 linux 中使用需求安装时存在问题。如何根据 linux 进行修改?这是我第一次打包模块。

我的 setup.py 是这样的——

from setuptools import setup
from sys import platform
setup(name='randomdownloader',
version='0.1.6',
description='random downloader',
author='Pankaj',
author_email='xyz@gmail.com',
license='MIT',
py_modules=['runnable'],
install_requires=[
'youtube-dl',
'bs4',
'BeautifulSoup4',
'requests',
'tkinter',
])

此外,在安装过程中它没有在我的OSX中安装,这是我遇到的错误。

命令"python setup.py egg_info"失败,错误代码为 1 in/private/tmp/pip-build-vsthnrl2/urllib/

您可以设置一个函数来运行sys.platform以区分系统,捕获输出并提取第一个单词。然后,根据它,您可以为所有基于 Debian 的发行版和 osx 运行apt-get install python3-tk

xcode-select --install
brew uninstall python
brew install python --use-brewed-tk

当然,您应该通过以下方式运行所有这些命令

call({command}), preceeded by `import subprocess` in your python script.

这将需要一些调整,但它应该为您指明正确的方向。

相关内容

  • 没有找到相关文章

最新更新