Closed yuhao closed 3 years ago
You can use python setup.py develop
for this case.
thanks. or i could manually run python setup.py install
each time seems like.
With develop
you can constantly make changes in python without doing install
again according to this answer. But if you make changes in the C++/CUDA, you need to recompile it with python setup.py install/develop
.
Thanks.
Yuhao
On Fri, Jul 2, 2021 at 1:52 PM Lixin Xue @.***> wrote:
With develop you can constantly make changes in python without doing install again according to this answer https://stackoverflow.com/a/26588871/12978666. But if you make changes in the C++/CUDA, you need to recompile it with python setup.py install/develop.
— You are receiving this because you modified the open/close state. Reply to this email directly, view it on GitHub https://github.com/lxxue/FRNN/issues/5#issuecomment-873164038, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAHRSQOVLT2WPXJZOFJXTTTTVX4GRANCNFSM47WZO4EA .
seems like changes made to
frnn/frnn.py
doesn't take place, even after runningpython setup.py install
. any idea why this might be the case?