【发布时间】:2020-05-25 10:57:40
【问题描述】:
我为我的项目创建了 setup.py。下面附上。 "-e" 运行 setup.py 文件。 我可以在末尾写 "-r requirements.txt" 以便创建包含我的需求和依赖项的环境吗?
name: mypro
dependencies:
- python==3.7
- pip
- matplotlib
- opencv
- cudnn
- cudatoolkit==10.1.243
- pip:
- tensorflow-gpu==2.1.0rc1
- lxml
- tqdm
- -e .
【问题讨论】:
-
这能回答你的问题吗? What is setup.py?
标签: python setup.py requirements.txt