-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No module named 'point_sam' #12
Comments
Besides, I tried to |
I met the same probelm, did you solved the problem yet? |
@zyc00 any solution ? |
From what I can see, the point_sam module might not be needed. For the instantiation of the model using |
Could you share your modified code? |
Here's the modified app.py. For some reason I can't attach it directly as a .py file? I'm not an experienced user of github. You can ignore the loadnifti part that's just for my own application and it's not working. While this now runs correctly as a flask app, I'm not convinced the model is actually working quite correctly on the scene.ply at least, because the segmentations are a little wonky. This morning I saw a different version of the app.py on the huggingface repo, which has the set_pointcloud() method, but still not the point_sam module.
|
Traceback (most recent call last):
File "/data1/zhongyao/dl/Point-SAM/demo/app.py", line 5, in
from point_sam import build_point_sam ModuleNotFoundError: No module named 'point_sam'
I tried
pip install git+https://github.com/zyc00/Point-SAM.git
and
python setup.py install
...
Installed /home/zhongyao/anaconda3/envs/psv2/lib/python3.9/site-packages/point_sam-1.0-py3.9.egg
Processing dependencies for point-sam==1.0
Finished processing dependencies for point-sam==1.0
The package should be installed and I can see it in site-packages folder,
/home/zhongyao/anaconda3/envs/psv2/lib/python3.9/site-packages/point_sam-1.0-py3.9.egg
but it can not import module
ModuleNotFoundError: No module named 'point_sam'
The text was updated successfully, but these errors were encountered: