Python:打包时出错

时间:2017-08-15 08:08:40

标签: python linux packaging pypi

我制作了一个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在/ private / tmp / pip-build-vsthnrl2 / urllib /

1 个答案:

答案 0 :(得分:0)

您可以设置一个函数来运行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.

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