15 Star 83 Fork 40

编程语言算法集 / d2l-zh

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 513 Bytes
一键复制 编辑 原始数据 按行查看 历史
Anirudh Dagar 提交于 2022-04-01 03:23 . Update r0.17.5 (#1120)
from setuptools import setup, find_packages
import d2l
requirements = [
'jupyter==1.0.0',
'numpy==1.21.5',
'matplotlib==3.5.1',
'requests==2.25.1',
'pandas==1.2.4'
]
setup(
name='d2l',
version=d2l.__version__,
python_requires='>=3.5',
author='D2L Developers',
author_email='d2l.devs@gmail.com',
url='https://d2l.ai',
description='Dive into Deep Learning',
license='MIT-0',
packages=find_packages(),
zip_safe=True,
install_requires=requirements,
)
Python
1
https://gitee.com/TheAlgorithms/d2l-zh.git
git@gitee.com:TheAlgorithms/d2l-zh.git
TheAlgorithms
d2l-zh
d2l-zh
master

搜索帮助