根据Tablib documentation,0.9.11版本应该在get_col(index)
上有Dataset
方法
但是当我使用pip安装Tablib时,这个方法并不可用。
E.g。来自pypi的tablib-0.9.11.tar.gz中的core.py
在core.py
from Github(开发分支)时没有get_col()
方法,而且两个文件都是__version__ = '0.9.11'
我是Python环境的新手,所以如果有人能指出我缺少的东西,我会很感激。
修改
我刚看到core.py
on the Github Master branch没有get_cols()
方法。
所以,我想我的新问题是:
版本:
答案 0 :(得分:1)
Github将为您提供具有正确URL的任何分支的压缩版本。 Pip可以使用该URL直接安装。
网址结构
https://github.com/{username}/{projectname}/archive/{branchname}.{file_extention}
安装最新的主人
pip install https://github.com/kennethreitz/tablib/archive/master.tar.gz
安装最新版本
pip install https://github.com/kennethreitz/tablib/archive/develop.tar.gz