File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ torchvision>=0.10.0 # More info: https://pytorch.org/get-started/locally/ (recom
100100``` bash
101101git clone https://github.com/chairc/Integrated-Design-Diffusion-Model.git
102102cd Integrated-Design-Diffusion-Model
103- python setup.py install
103+ pip install . # Or python setup.py install
104104```
105105
106106
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ torchvision>=0.10.0 # 更多信息:https://pytorch.org/get-started/locally/
9898``` bash
9999git clone https://github.com/chairc/Integrated-Design-Diffusion-Model.git
100100cd Integrated-Design-Diffusion-Model
101- python setup.py install
101+ pip install . # 或者 python setup.py install
102102```
103103
104104
Original file line number Diff line number Diff line change @@ -130,6 +130,6 @@ torchvision>=0.10.0 # More info: https://pytorch.org/get-started/locally/ (recom
130130``` bash
131131git clone https://github.com/chairc/Integrated-Design-Diffusion-Model.git
132132cd Integrated-Design-Diffusion-Model
133- python setup.py install
133+ pip install . # Or python setup.py install
134134```
135135
Original file line number Diff line number Diff line change @@ -135,5 +135,5 @@ torchvision>=0.10.0 # 更多信息:https://pytorch.org/get-started/locally/
135135``` bash
136136git clone https://github.com/chairc/Integrated-Design-Diffusion-Model.git
137137cd Integrated-Design-Diffusion-Model
138- python setup.py install
138+ pip install . # 或者 python setup.py install
139139```
Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ tqdm==4.66.3
1010pytorch_fid == 0.3.0
1111fastapi == 0.115.6
1212tensorboardX == 2.6.1
13-
1413# If you want to download gpu version
1514# Please use: pip install torch==1.13.0+cu116 torchvision==0.14.0+cu116 -f https://download.pytorch.org/whl/torch_stable.html
1615# About more torch information please click: https://pytorch.org/get-started/previous-versions/#linux-and-windows-25
1716# More versions please click: https://pytorch.org/get-started/previous-versions
1817# [Note] torch versions must >= 1.9.0
19- torch >= 1.9.0 # More info: https://pytorch.org/get-started/locally/ (recommended)
20- torchvision >= 0.10.0 # More info: https://pytorch.org/get-started/locally/ (recommended)
18+ # More info: https://pytorch.org/get-started/locally/ (recommended)
19+ torch >= 1.9.0
20+ torchvision >= 0.10.0
Original file line number Diff line number Diff line change @@ -38,10 +38,11 @@ def get_long_description():
3838 # Define the metadata of the package
3939 setup (
4040 name = "iddm" ,
41- version = "1.1.8-b3 " ,
41+ version = "1.1.8b3 " ,
4242 packages = find_packages (),
4343 python_requires = ">=3.8" ,
44- install_requires = package_list ,
44+ # Windows users may get path problems, replace get_install_requirements() with package_list
45+ install_requires = get_install_requirements (),
4546 license = "Apache-2.0" ,
4647 description = "IDDM: Integrated Design Diffusion Model" ,
4748 long_description = get_long_description (),
You can’t perform that action at this time.
0 commit comments