mattmacy / vnet.pytorch

A PyTorch implementation for V-Net: Fully Convolutional Neural Networks for Volumetric Medical Image Segmentation
https://mattmacy.github.io/vnet.pytorch
BSD 3-Clause "New" or "Revised" License
693 stars 200 forks source link

How can I install torchbiomed #26

Open zgj834124621 opened 4 years ago

zgj834124621 commented 4 years ago

when I use pip -r requirements.txt,a question as follow: ERROR: No matching distribution found for torchbiomed (from -r requirements.txt (line 4))

tzcskys commented 4 years ago

when I use pip -r requirements.txt,a question as follow: ERROR: No matching distribution found for torchbiomed (from -r requirements.txt (line 4))

git clone https://github.com/mattmacy/torchbiomed.git
cd torchbiomed
pip install -e .

do not miss the dot behind the -e

tzcskys commented 4 years ago

if you want to remove this package, just use pip uninstall package-name, and package-name can be found from pip list

JoshuaYang0926 commented 1 year ago

Thk tzcskys,bro!