-
Notifications
You must be signed in to change notification settings - Fork 88
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
Unable to find cuda_ba in the site packages folder after running pip install . #39
Comments
If I enter "python" "import cuda_BA" in the terminal, the error message of the terminal is as follows
|
Sorry, I knew. |
in colab u might have problem with ur system path so i add this lines at first of setup.py then everythings goes well. import sys print(sys.path) |
I have this same issue when I'm runnign the google colab and the code locally |
Same here. Have you resolved the problem yet? |
I had the same issue due to mismatched CUDA Toolkit and PyTorch versions. The easiest fix is to set up the environment with the correct versions. Use the updated environment.yml file attached below to replace the existing one and test DPVO. It should work without any problems. |
Before running the pip install . , running demo.py will prompt no module named cuda_ba
However, after running the pip install . the program will get stuck in the file dpvo/fastba/ba.py
The IDE marked with a red line in the line "import cuda_ba"
but the program will not report an error, it will only get stuck in the line "ix, jx=fastba. highbors (kk, jj)" in the devo/net.py
Could you please tell me how to solve the problem
The text was updated successfully, but these errors were encountered: