浏览代码

Updating install_requires to be more strict.

/develop-generalizationTraining-TrainerController
Deric Pang 6 年前
当前提交
b5561409
共有 2 个文件被更改,包括 2 次插入3 次删除
  1. 1
      docs/Installation.md
  2. 4
      ml-agents/setup.py

1
docs/Installation.md


To install dependencies, enter the `ml-agents/` directory and run from
the command line:
pip install -r requirements.txt
pip install .
## Docker-based Installation

4
ml-agents/setup.py


packages=find_packages(exclude=['tests', 'tests.*', '*.tests', '*.tests.*']), # Required
install_requires=[
'tensorflow>=1.7',
'tensorflow>=1.7,<1.8',
'Pillow>=4.2.1',
'matplotlib',
'numpy>=1.13.3,<=1.14.5',

'pyyaml',
'protobuf>=3.6.0',
'protobuf>=3.6,<3.7',
'grpcio>=1.11.0'],
entry_points={

正在加载...
取消
保存