Félix Therrien

Results 9 comments of Félix Therrien

Ash, That will not work until I add p2ptrans on PyPI and I actually update the version every time I make a significant modification. As soon as the 2D (interface)...

@yuefengzhang this error comes up if you use numpy 1.26.3 or 1.26.4, any other version before or after will work. See: https://github.com/ftherrien/p2ptrans/issues/34#issuecomment-2045830309 Let me know if that works for you.

Did you reinstall using that version?

Could you run the following and copy the output from your terminal here: ``` python -m pip freeze | grep -E "numpy|p2ptrans" which python python -c "import numpy; numpy.__version__" python...

I don't see the output from the terminal

Can you try: ``` pip install --upgrade numpy==1.26.0 pip uninstall p2ptrans pip install scikit-build pip install --no-use-pep517 git+https://github.com/ftherrien/p2ptrans ```

Great! Happy to help, let me know if you have other questions

I am still experiencing this problem with python 3.10.12 in a fresh env: ``` ftherrien@PC:~$ python3 -m venv test_scatter ftherrien@PC-T-023:~$ source test_scatter/bin/activate (test_scatter) felixtherrien@PC-T-023:~$ pip install torch torch_scatter Collecting torch...