-
Notifications
You must be signed in to change notification settings - Fork 101
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
Some notes on installation #3
Comments
Hi, @taesiri, really appreciate for your instruction to install the package! This is very useful, I will go to handle the inconvenience of installation. Best. |
Already fixed, closing this issue. |
It is weired but I encountered "NameError: name 'MPI' is not defined" for SEEM package and need to add "from mpi4py import MPI" in that file |
@dddraxxx Have you installed
|
yes, but still need to import that in the 'seem' library code |
@dddraxxx You should check and verify if Btw, I can share my |
@taesiri yes. I installed both via conda and the code can run well if I add that line |
I had the same issue with MPI. It seems that |
I also met the same problem. How did you solve it? |
See #12 (comment) for an explanation and fix. |
Hello,
First of all, thank you for sharing the source code.
I encountered some issues while trying to install
Semantic-SAM
following the instructions in theREADME
file. In theSemantic-SAM
repository, there is a pyproject.toml file, and theoretically, it should take care of the installation. However, due to some strange issues, I had to install it manually.Here are the steps I followed for anyone who is interested:
Using a fresh Anaconda environment to install Semantic-SAM:
After this, you need to compile and install
MultiScaleDeformableAttention
:git clone https://github.com/facebookresearch/Mask2Former cd Mask2Former/mask2former/modeling/pixel_decoder/ops sh make.sh
Additionally, you need to install
mpi4py
:You can install SEEM and SAM using the pip+git method:
I hope this helps resolve any installation issues.
The text was updated successfully, but these errors were encountered: