Skip to content

Commit e918178

Browse files
authored
Fix requirements.txt
According to https://pip.pypa.io/en/stable/user_guide/ to set the version of torch "==" should be used. Otherwise one recieves the following error: ``` ERROR: Invalid requirement: 'pytorch=0.4.1' (from line 3 of requirements.txt) Hint: = is not a valid operator. Did you mean == ? ```
1 parent 6d83839 commit e918178

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
numpy
22
scipy
3-
pytorch=0.4.1
3+
pytorch==0.4.1
44
torchvision
55
opencv3
66
yacs

0 commit comments

Comments
 (0)