You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had issues with FastGWR on two Linux Mint (Ubuntu derivative) machines. One was Linux Mint 19.3 (tricia/bionic) with python 3.8.0 and the other was Linux Mint 20 (ulyana/focal) with python 3.8.5. fastgwr --version worked, but when testing/running the software, I was getting various errors about mpiexec despite mpiexec being installed. The error ended up being that I needed to update alternatives for python because both systems had python2 and python3 installed.
To check if you have the same problem run:
>>> update-alternatives --list python
update-alternatives: error: no alternatives for python
>>> sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.8 1
update-alternatives: using /usr/bin/python3.8 to provide /usr/bin/python (python) in auto mode
This comand sets python3.8 to your first priority alternative for python. To check this worked, run
I had issues with FastGWR on two Linux Mint (Ubuntu derivative) machines. One was Linux Mint 19.3 (tricia/bionic) with python 3.8.0 and the other was Linux Mint 20 (ulyana/focal) with python 3.8.5.
fastgwr --version
worked, but when testing/running the software, I was getting various errors about mpiexec despite mpiexec being installed. The error ended up being that I needed to update alternatives for python because both systems had python2 and python3 installed.To check if you have the same problem run:
If you get the error above, follow the steps in this article to update alternatives to set Python to the correct version. I was using Python 3.8 so for both machines the solution was:
This comand sets python3.8 to your first priority alternative for python. To check this worked, run
You should get the correct python3 as the result of the command. To check that this solved the issue with FastGWR run:
The text was updated successfully, but these errors were encountered: