alew3 / faceit_live3

This is an update to faceit_live using first order model
366 stars 96 forks source link

torch module issues #16

Open OvoidChickenStorage opened 4 years ago

OvoidChickenStorage commented 4 years ago

In the requirements.txt torch==1.4.0 torchvision==0.5.0 are commented out but when I run python faceit_live.py I get:

(faceit_live3) C:\...\faceit_live3-master\faceit_live3>python faceit_live.py
Traceback (most recent call last):
  File "faceit_live.py", line 19, in <module>
    import torch
ModuleNotFoundError: No module named 'torch'
dlgiant commented 4 years ago

It seems like you many have not installed all dependencies. Did you run this: conda install pytorch=1.4 torchvision=0.5 cudatoolkit=10.1 -c pytorch

Also, when you runpip install -r requirements.txt does it show any package that might have not been installed?