tedhuang96 / nirrt_star

[ICRA24] Neural Informed RRT*
https://sites.google.com/view/nirrt-star
MIT License
38 stars 7 forks source link

environment problen #3

Closed JaycgbEDC closed 1 month ago

JaycgbEDC commented 3 months ago

Hi,there is a bug in setup part of ReadMe file.Exactly this command:pip install -e . while there hasn't setup.py,so machine will throw an error

tedhuang96 commented 3 months ago

Thank you for your question! Can you try skip the command pip install -e ., and run everything else in README?

I am pretty sure why I had this pip install -e . in README. Before organization of the code, There are files inside folders (not the root folder) that I need to run python folder/file.py, so I created a setup.py and run pip install -e . to avoid any import errors.

Now after the code organization, every file we run python on is in the root folder, so I deleted setup.py, but I forgot to remove pip install -e .. Please let me know if there is any other question after you try skip the command pip install -e ., and run everything else in README.

JaycgbEDC commented 3 months ago

Thank you for your question! Can you try skip the command pip install -e ., and run everything else in README?

I am pretty sure why I had this pip install -e . in README. Before organization of the code, There are files inside folders (not the root folder) that I need to run python folder/file.py, so I created a setup.py and run pip install -e . to avoid any import errors.

Now after the code organization, every file we run python on is in the root folder, so I deleted setup.py, but I forgot to remove pip install -e .. Please let me know if there is any other question after you try skip the command pip install -e ., and run everything else in README.

new problem: in the environment of python=3.9, open3d can't be installed.while python=3.8 can do that

tedhuang96 commented 3 months ago

I tested on my linux machine and the installation works fine. If you are using different systems, it does not guarantee the packages can be successfully installed. You can go ahead with python 3.8 with open3d installed, and let me know if there are more questions.

tedhuang96 commented 1 month ago

Hi,there is a bug in setup part of ReadMe file.Exactly this command:pip install -e . while there hasn't setup.py,so machine will throw an error

pip install -e . is removed in setup instructions in README.md. https://github.com/tedhuang96/nirrt_star/commit/285dd248b7e9c0c23e4b6362fcd6bdc8166457e7