yeezhu / SPN.pytorch

PyTorch implementation of "Soft Proposal Networks for Weakly Supervised Object Localization", ICCV 2017.
http://yzhu.work/spn.html
MIT License
211 stars 37 forks source link

Which python version? #3

Closed JingyunLiang closed 6 years ago

JingyunLiang commented 6 years ago

I tried python3.5.4 & python3.6.2, but failed to install torchnet:

  Could not find a version that satisfies the requirement torchnet (from versions: )
No matching distribution found for torchnet
yeezhu commented 6 years ago

@MichaelLiang12 It seems not the python version issues, please check here: https://github.com/pytorch/tnt

JingyunLiang commented 6 years ago

Yes, torchnet is not on pypi yet. you have to install from source for now. Ref to https://github.com/pytorch/tnt/issues/9

pip install git+https://github.com/pytorch/tnt.git@master

Thank you.