Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

WRF 4.5 configure error

zexhan

New member
hello, i am trying to install latest version of wrf 4.5 which i downloaded from Github website. when i try to configure it. i install all libraries and give them All path everything is alright but it shows this error when i try to configure. can anybody help me with this? it show this error

./configure: 1046: [: rpc: unexpected operator
 

Attachments

  • Screenshot from 2023-05-24 19-53-54.png
    Screenshot from 2023-05-24 19-53-54.png
    285.5 KB · Views: 30
I have the same issue. I've changed de operator "==" for "=" in line 1046:

if [ $rpc_type == "rpc" ]; then ## default
if [ $rpc_type = "rpc" ]; then ## adjusted

So, it works without any error or waning.
 
I have the same issue. I've changed de operator "==" for "=" in line 1046:

if [ $rpc_type == "rpc" ]; then ## default
if [ $rpc_type = "rpc" ]; then ## adjusted

So, it works without any error or waning.
ok thanks, i did same and it configure now without that error.
 
Top