Home  >  Q&A  >  body text

python - pip安装与本地Setuptools安装的区别?

大家好,我是Python初学者,如果暴露了我某些弱智的地方,请各位看官轻喷

初学Python,尝试着开发一个小项目来联系,项目托管在此处

背景介绍

项目基于Python 3.5开发,开发以及测试平台为Win 10 x64

我的项目中引用到了data.json这样一个数据文件,我在setup.py已经添加了下列设置:

include_package_data=True,
package_data={'':['*.json']},

并且在MANIFEST.in文件中指明了include chineseregion data.json

以上为背景以及环境信息

出现的问题

想了解的信息

提前感谢各位的回答,谢谢!

巴扎黑巴扎黑2763 days ago292

reply all(1)I'll reply

  • PHPz

    PHPz2017-04-17 16:14:54

    package_data={'chineseregion':['*.json']},
    

    There should be no difference between pip installation and local installation. If you can install successfully locally, it may just be that you already have the json in your local folder.

    reply
    0
  • Cancelreply