lxy5513 / hrnet

deep_high_resolution_network for pose estimation,integrate yoloV3 human detection, insert flownet2 and SG-filter
MIT License
81 stars 19 forks source link

Error establishing connection to servers from requirement.txt #7

Closed hasu0023 closed 5 years ago

hasu0023 commented 5 years ago

hrnet_issue

Can you comment, why I cannot establish communication to these channels present in requirement.txt for setting up the environment?

lxy5513 commented 5 years ago

清华源的anaconda镜像已经不可用了, 你需要把它们删了,用官方的镜像。

lxy5513 commented 5 years ago

I have updated the env_info_file.yml

hasu0023 commented 5 years ago

Still I could not access other packages as you can see from image, do my system requirements needs to be modified? I do have anaconda, Python 3.7 / 3.6 installed and related packages. Maybe I am missing something, not sure. Thanks for any help. hrnet_env_error

lxy5513 commented 5 years ago

you can install by pip

if you have cuda10, you can :

conda create -n hrnet python=3.7  
pip install -r requirements
cd lib && make

if you have other cuda version
you can replace pytorch in requirements, like:

pip install torch==1.0.1 -f https://download.pytorch.org/whl/cu80/stable # CUDA 8.0 build
pip install torch==1.0.1 -f https://download.pytorch.org/whl/cu90/stable # CUDA 9.0 build
pip install torch==1.0.1 -f https://download.pytorch.org/whl/cu92/stable # CUDA 9.2 build