System Requirements
We support python 3.6 and python 3.7. If you need support for another Python version, please send us an email.
You can use bamboolib on Jupyter Notebook (>=4.4.0) or JupyterLab (>=1.0.0)
We currently guarantee full support for Google Chrome only. If you want to use bamboolib for different browsers, please contact us.
You find the full list of package dependencies here under
requires_dist
. If you want to do that from within python ('cause why not!), run the code below:import requests
url = 'https://pypi.python.org/pypi/bamboolib/json'
data = requests.get(url).json()
requirements = data['info']['requires_dist']
for requirement in requirements:
print(requirement)
Last modified 3yr ago