MET not compiling on Ubuntu 22.04 #1636
-
Good morning. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Hi @whatheway, it looks posted this question, then edited the text to remove the actual question. Do you still need help with this issue? |
Beta Was this translation helpful? Give feedback.
-
Hi @whatheway, that is good to hear. Would you mind posting your solution so that other users that encounter a similar issue can refer to it? Thanks. |
Beta Was this translation helpful? Give feedback.
-
For anyone using the community code located at the bottom of the METPlus download page https://dtcenter.org/community-code/metplus/download **Other Installation Options Will Hatheway, a meteorologist in Austin, TX, created BASH scripts to self install all the required files to run the WRF-4.3 and WRFCHEM-4.3. Due to requests from the community, he added BASH scripts to install the MET and METplus. These scripts are available on his GitHub page and are supported by him.** The code as an issue with python libraries being called on Ubuntu 22.04. Python3 is called in the met install code using /usr/bin/python3 --version. If that version is different then the python version called in code below it will break the code. As the author of the code I am now aware of the issue and am trying to find a resolution to patch the code within the coming days.
So any user having issues would need to change the 3.8 to whatever the current version of python3 is installed. |
Beta Was this translation helpful? Give feedback.
@georgemccabe
For anyone using the community code located at the bottom of the METPlus download page https://dtcenter.org/community-code/metplus/download
**Other Installation Options
Will Hatheway, a meteorologist in Austin, TX, created BASH scripts to self install all the required files to run the WRF-4.3 and WRFCHEM-4.3. Due to requests from the community, he added BASH scripts to install the MET and METplus. These scripts are available on his GitHub page and are supported by him.**
The code as an issue with python libraries being called on Ubuntu 22.04. Python3 is called in the met install code using /usr/bin/python3 --version. If that version is different then the python version calle…