NCAR / wrf-python

A collection of diagnostic and interpolation routines for use with output from the Weather Research and Forecasting (WRF-ARW) Model.
https://wrf-python.readthedocs.io
Apache License 2.0
392 stars 149 forks source link

Wrong SLP gathered by getvar #220

Closed December0w0 closed 7 months ago

December0w0 commented 7 months ago

I was trying to plot a sea level pressure(SLP) figure while using getvar command from wrf_out file. The figure is as follow. Plots on the top are the SLP and plots on the bottom are the surface 10m wind. Obviously there are some high pressure errors in the south part of China, while there should be a typhoon in the south of Guangdong Province and Hong Kon SAR( I know my colorbar was awful). Z9755_d03surface00_23090112 I checked the wrf data in Panoply and it seems normal. So I guess the problem is in where I'm reading the file or using getvar for variables. Here are the code I was using. How should I solve this problem :( ??

Getting data


from pathlib import Path
import numpy as np
import matplotlib as mplx
import matplotlib.pyplot as plt
import xarray as xr
import cartopy.crs as ccrs
import cartopy.feature as cfeature
from cartopy.mpl.ticker import LongitudeFormatter,LatitudeFormatter
from netCDF4 import Dataset
import math
from cartopy.util import add_cyclic_point
from scipy import stats as st
from glob import glob
import datetime
import numpy as np
import os
import wrf
from wrf import getvar,smooth2d
from wrf import disable_xarray, interplevel, vertcross,vinterp,enable_xarray, ALL_TIMES, CoordPair, xy_to_ll, ll_to_xy, to_np, get_cartopy, latlon_coords, cartopy_xlim, cartopy_ylim
from matplotlib.animation import FuncAnimation
from netCDF4 import Dataset
import csv
import pandas as pd
from datetime import time
from mpl_toolkits.axes_grid1 import make_axes_locatable
#函数
def add_right_cax(ax,pad,width):
    #在图片右侧追加与图片等高的cax
    #pad为cax和ax的间距
    #width为cax的宽度
    axpos=ax.get_position()
    caxpos=mplx.transforms.Bbox.from_extents(
        axpos.x1+pad,
        axpos.y0,
        axpos.x1+pad+width,
        axpos.y1
    )
    cax=ax.figure.add_axes(caxpos)
    return cax

def wind_speed_calculation(a,b): #定义一个可以根据风矢量来计算风速的函数。请注意,该函数仅可计算二维风场
    ba=len(a)
    ka=len(a[1])
    ta=len(b)
    tha=len(b[1])
    speed=np.full((ba,ka),np.nan)
    if ba!=ta or ka!=tha:
        print('数组不匹配。即将停止运行')
    else:
        for i in range(0,ba):
            for j in range(0,ka):
                speed[i,j]=math.sqrt(a[i,j]**2+b[i,j]**2)

    return speed

# 读取数据
pathu=Path('E:/Data/DA/saola_Sband/2023090106/EnKF/Z9755/f/mem_00')
pathf=Path('E:/Data/DA/saola_Sband/2023090106/EnKF/Z9755/u/mem_00')
filelist_f=[_ for _ in sorted(glob(os.path.join(pathf, 'u_m00_d03_2023090*'))) if not os.path.isdir(_)]  #背景场
filelist_u=[_ for _ in sorted(glob(os.path.join(pathu, 'u_m00_d03_2023090*'))) if not os.path.isdir(_)]  #分析场
alif=len(filelist_f)
names = locals()  #获取当前程序段中的全体局部变量名  
for i in range(0,alif):
    names['nc_obj_f%s'%i]=Dataset(filelist_f[i]) #基本场
    names['nc_obj_u%s'%i]=Dataset(filelist_u[i]) #分析场
    print('---------------------------------------')
    print('读取第',i+1,'个nc_f和nc_u,编号记为nc_f',i,'和nc_u',i)
    nc_f=names['nc_obj_f%s'%i]
    nc_u=names['nc_obj_u%s'%i]
    name_x=filelist_f[i]
    name_title=name_x[59:71]

    names['P_f %s'%i] = getvar(nc_f, "pressure",method="cat")
    names['Z_f %s'%i] = getvar(nc_f, "z",method="cat")
    names['XLONG_f %s'%i]=getvar(nc_f, "XLONG",method="cat")
    names['LONG_f %s'%i]=getvar(nc_f, "lon",method="cat")
    names['XLAT_f %s'%i]=getvar(nc_f, "XLAT",method="cat")
    names['LAT_f %s'%i]=getvar(nc_f, "lat",method="cat")
    names['Times_f %s'%i]=getvar(nc_f, "Times",method="cat")
    names['PB_f %s'%i]=getvar(nc_f, "PB",method="cat")
    names['PSFC_f %s'%i]=getvar(nc_f, "PSFC",method="cat")
    #names['ITIMESTEP_f %s'%i]=nc_f.variables['ITIMESTE'][:]
    names['T2__f %s'%i]=getvar(nc_f, "T2",method="cat")
    names['MAPFAC_M_f %s'%i]=getvar(nc_f, "MAPFAC_M",method="cat")
    names['TSK_f %s'%i]=getvar(nc_f,'TSK',method="cat")#地表温度,单位为开尔文(K)
    names['SST_f %s'%i]=getvar(nc_f,'SST',method="cat")
    names['ZNU_f %s'%i]=getvar(nc_f,'ZNU',method="cat") #eta坐标系的值
    names['HGT_f %s'%i]=getvar(nc_f,'HGT',method="cat") #海拔高度
    names['PH_f %s'%i]=getvar(nc_f,'PH',method="cat") #扰动位势
    names['RAINNC_f %s'%i]=getvar(nc_f,'RAINNC',method="cat") #累积总格网级降水量  
    names['QCLOUD_f %s'%i]=getvar(nc_f,'QCLOUD',method="cat") #云水混合比
    names['SLP_f_unsmooth%s'%i]=getvar(nc_f,'slp',method="cat")#wrf.g_slp.get_slp(nc_f)   # #海平面气压,为计算所得
    names['temperature_f %s'%i]=getvar(nc_f,'temp',method="cat") #温度(以K为单位)
    names['uvmet_f %s'%i]=getvar(nc_f,'uvmet',method="cat")
    names['uvmet10m_f_Xarray%s'%i]=getvar(nc_f,'uvmet10',method="cat")
    names['uvmet10m_f %s'%i]=to_np(names['uvmet10m_f_Xarray%s'%i])
    names['U_f %s'%i]=getvar(nc_f,'ua',method="cat")
    names['V_f %s'%i]=getvar(nc_f,'va',method="cat")
    #names['thetas_f '%i]=getvar(nc_f,'theta',method="cat") #位温
    #names['PVO_f '%i]=getvar(nc_f,'pvo',method="cat") #位涡
    #names['DBZ_f '%i]=getvar(nc_f,'dbz',method="cat") #反射率
    #names['MDBZ_f '%i]=getvar(nc_f,'mdbz',method="cat") #最大反射率
    #names['ctt_f '%i]=getvar(nc_f,'ctt',method="cat") #云顶温度

    names['P_u %s'%i] = getvar(nc_u, "pressure",method="cat")
    names['Z_u %s'%i] = getvar(nc_u, "z",method="cat")
    names['XLONG_u %s'%i]=getvar(nc_u, "XLONG",method="cat")
    names['LONG_u %s'%i]=getvar(nc_u, "lon",method="cat")
    names['XLAT_u %s'%i]=getvar(nc_u, "XLAT",method="cat")
    names['LAT_u %s'%i]=getvar(nc_u, "lat",method="cat")
    names['Times_u %s'%i]=getvar(nc_u, "Times",method="cat")
    names['PB_u %s'%i]=getvar(nc_u, "PB",method="cat")
    names['PSFC_u %s'%i]=getvar(nc_u, "PSFC",method="cat")
    #names['ITIMESTEP_u %s'%i]=nc_u.variables['ITIMESTE'][:]
    names['T2__u %s'%i]=getvar(nc_u, "T2",method="cat")
    names['MAPFAC_M_u %s'%i]=getvar(nc_u, "MAPFAC_M",method="cat")
    names['TSK_u %s'%i]=getvar(nc_u,'TSK',method="cat")#地表温度,单位为开尔文(K)
    names['SST_u %s'%i]=getvar(nc_u,'SST',method="cat")
    names['ZNU_u %s'%i]=getvar(nc_u,'ZNU',method="cat") #eta坐标系的值
    names['HGT_u %s'%i]=getvar(nc_u,'HGT',method="cat") #海拔高度
    names['PH_u %s'%i]=getvar(nc_u,'PH',method="cat") #扰动位势
    names['RAINNC_u %s'%i]=getvar(nc_u,'RAINNC',method="cat") #累积总格网级降水量  
    names['QCLOUD_u %s'%i]=getvar(nc_u,'QCLOUD',method="cat") #云水混合比
    names['SLP_u_unsmooth%s'%i]=getvar(nc_u,'slp',method="cat")#wrf.g_slp.get_slp(nc_u)   #getvar(nc_u,'slp') #海平面气压,为计算所得
    names['temperature_u %s'%i]=getvar(nc_u,'temp',method="cat") #温度(以K为单位)
    names['uvmet_u %s'%i]=getvar(nc_u,'uvmet',method="cat")
    names['uvmet10m_u_Xarray%s'%i]=getvar(nc_u,'uvmet10',method="cat")
    names['uvmet10m_u %s'%i]=to_np(names['uvmet10m_u_Xarray%s'%i])
    names['U_u %s'%i]=getvar(nc_u,'ua',method="cat")
    names['V_u %s'%i]=getvar(nc_u,'va',method="cat")
    #names['thetas_u '%i]=getvar(nc_u,'theta',method="cat") #位温
    #names['PVO_u '%i]=getvar(nc_u,'pvo',method="cat") #位涡
    #names['DBZ_u '%i]=getvar(nc_u,'dbz',method="cat") #反射率
    #names['MDBZ_u '%i]=getvar(nc_u,'mdbz',method="cat") #最大反射率
    #names['ctt_u '%i]=getvar(nc_u,'ctt',method="cat") #云顶温度
print('---------------------------------------')
print('读取完毕,即将进入插值阶段')`

I also used to_np command.

To_np

names['SLP_f %s'%i]=to_np(names['SLP_f_Xarray%s'%i])
     names['SLP_u %s'%i]=to_np(names['SLP_u_Xarray%s'%i])`

Plotting Figures

plt.rcParams['font.sans-serif']=['SimHei']
plt.rcParams['axes.unicode_minus'] = False  #以上两行代码为允许输入中文的代码
box=[109,117,18.5,25.1]
distance=0.0005 #设置colorbar与图的距离
deltax=0.005
for i in range(0,alif):
    print('第',i+1,'次循环')
    tname=filelist_f[i]
    title_name=tname[66:74] #注意,需要随着路径而更改该部分切片的长度
    fig=plt.figure(figsize=(20,19))
    plt.suptitle('SLP and wind in {}'.format(title_name),fontsize=40,y=0.91)
    #变量赋值,以便后续绘图
    longitude=names['LONG_f %s'%i];latitude=names['LAT_f %s'%i]
    surface_pressure_f=names['SLP_f %s'%i] ;surface_pressure_u=names['SLP_u %s'%i]
    #变量赋值完毕,创建图例
    #地表气压
    ax1=fig.add_subplot(221,projection=ccrs.PlateCarree())
    ax1.coastlines(linewidth=1)
    ax1.grid()
   #n1_l=ax1.contour(longitude,latitude,surface_pressure_f,colors='navy')#,levels=np.linspace(900,1100,41))
    #ax1.clabel(n1_l, inline=True, fontsize=15)
    n1=ax1.contourf(longitude,latitude,surface_pressure_f,levels=np.linspace(900,1150,51),cmap='PuOr')
    #cax=add_right_cax(ax1,pad=distance,width=0.01)
    #cb1=plt.colorbar(n1,cax=cax)
    ax1.set_extent(box,crs=ccrs.PlateCarree())
    ax1.set_xticks(np.arange(-160,180,2),crs=ccrs.PlateCarree())
    ax1.set_yticks(np.arange(-25,45.000001,1),crs=ccrs.PlateCarree())
    ax1.set_extent(box,crs=ccrs.PlateCarree())   
    #lon_formatter=LongitudeFormatter(np.arange(-90,-59.599999,5),crs=ccrs.PlateCarree())
    lon_formatter=LongitudeFormatter(number_format='.0f',degree_symbol='')
    lat_formatter=LatitudeFormatter(number_format='.0f',degree_symbol='')
    ax1.xaxis.set_major_formatter(lon_formatter)
    ax1.yaxis.set_major_formatter(lat_formatter)
    ax1.axes.xaxis.set_ticklabels([]) #把x轴坐标轴设为空
    ax1.tick_params(labelsize=30)
    #cb1.ax.tick_params(labelsize=25)
    #ax1.set_xlabel('Longitude',fontsize=25)
    ax1.set_ylabel('Latitude',fontsize=35)
    #ax1.set_title('Background SLP and wind speed({})'.format(title_name),fontsize=35)

    ax2=fig.add_subplot(222,projection=ccrs.PlateCarree())
    ax2.coastlines(linewidth=1)
    ax2.grid()
   #n1_l=ax2.contour(longitude,latitude,surface_pressure_f,colors='navy')#,levels=np.linspace(900,1100,41))
    #ax2.clabel(n1_l, inline=True, fontsize=15)
    n2=ax2.contourf(longitude,latitude,surface_pressure_u,levels=np.linspace(900,1150,51),cmap='PuOr')
    cax=add_right_cax(ax2,pad=deltax,width=0.02)
    cb2=plt.colorbar(n2,cax=cax)
    ax2.set_extent(box,crs=ccrs.PlateCarree())
    ax2.set_xticks(np.arange(-160,180,2),crs=ccrs.PlateCarree())
    ax2.set_yticks(np.arange(-25,45.000001,1),crs=ccrs.PlateCarree())
    ax2.set_extent(box,crs=ccrs.PlateCarree())   
    #lon_formatter=LongitudeFormatter(np.arange(-90,-59.599999,5),crs=ccrs.PlateCarree())
    lon_formatter=LongitudeFormatter(number_format='.0f',degree_symbol='')
    lat_formatter=LatitudeFormatter(number_format='.0f',degree_symbol='')
    ax2.xaxis.set_major_formatter(lon_formatter)
    ax2.yaxis.set_major_formatter(lat_formatter)
    ax2.axes.xaxis.set_ticklabels([]) #把x轴坐标轴设为空
    ax2.axes.yaxis.set_ticklabels([]) #把y轴坐标轴设为空
    ax2.tick_params(labelsize=30)
    cb2.ax.tick_params(labelsize=35)
    cb2.ax.set_title('(hPa)',fontsize=30)
    #ax2.set_xlabel('Longitude',fontsize=25)
    #ax2.set_ylabel('Latitude',fontsize=25)
    #ax2.set_title('Background SLP and wind speed({})'.format(title_name),fontsize=35)`
zhanshi1997 commented 4 months ago

Hello, I now have the same problem. Could you tell me how you solved it? Thank you so much.

December0w0 commented 4 months ago

Hello, I now have the same problem. Could you tell me how you solved it? Thank you so much.

Certainly. If your python version is 3.11 or later than 3.11, then you need to downgrade your python to 3.10.9 or older than 3.10.9. Meanwhile, it is clear that wrf-python may be iill be incompatible with some package such as pycwr. If you have pycwr, please uninstall it and install pycwr and wrf-python into different environment. I downgrade my python to 3.10.9 and installed pycwr into a new environment without pycwr and the problem was solved. Hope my awful English would not bother you unterstanding my solution. ( ´ ▽ ` )ノ

zhanshi1997 commented 4 months ago

Hello @December0w0, thank you so much for your response! I changed to python 3.10.13, I don't have pycwr installed. The problem is not solved. Here's my package list, maybe any of them needs to be reinstalled:

Name Version Build Channel

abseil-cpp 20211102.0 hd77b12b_0 aiobotocore 2.7.0 py310haa95532_0 aiohttp 3.9.3 py310h2bbff1b_0 aioitertools 0.7.1 pyhd3eb1b0_0 aiosignal 1.2.0 pyhd3eb1b0_0 alabaster 0.7.12 pyhd3eb1b0_0 altair 5.0.1 py310haa95532_0 anaconda 2024.02 py310_mkl_0 anyio 4.2.0 py310haa95532_0 aom 3.6.0 hd77b12b_0 appdirs 1.4.4 pyhd3eb1b0_0 argon2-cffi 21.3.0 pyhd3eb1b0_0 argon2-cffi-bindings 21.2.0 py310h2bbff1b_0 arrow 1.2.3 py310haa95532_1 arrow-cpp 14.0.2 ha81ea56_1 astroid 2.14.2 py310haa95532_0 astropy 5.3.4 py310h9128911_0 asttokens 2.0.5 pyhd3eb1b0_0 async-lru 2.0.4 py310haa95532_0 async-timeout 4.0.3 py310haa95532_0 atomicwrites 1.4.0 py_0 attrs 23.1.0 py310haa95532_0 automat 20.2.0 py_0 autopep8 1.6.0 pyhd3eb1b0_1 aws-c-auth 0.6.19 h2bbff1b_0 aws-c-cal 0.5.20 h2bbff1b_0 aws-c-common 0.8.5 h2bbff1b_0 aws-c-compression 0.2.16 h2bbff1b_0 aws-c-event-stream 0.2.15 hd77b12b_0 aws-c-http 0.6.25 h2bbff1b_0 aws-c-io 0.13.10 h2bbff1b_0 aws-c-mqtt 0.7.13 h2bbff1b_0 aws-c-s3 0.1.51 h2bbff1b_0 aws-c-sdkutils 0.1.6 h2bbff1b_0 aws-checksums 0.1.13 h2bbff1b_0 aws-crt-cpp 0.18.16 hd77b12b_0 aws-sdk-cpp 1.10.55 hd77b12b_0 babel 2.11.0 py310haa95532_0 bcrypt 3.2.0 py310h2bbff1b_1 beautifulsoup4 4.12.2 py310haa95532_0 binaryornot 0.4.4 pyhd3eb1b0_1 black 23.11.0 py310haa95532_0 blas 1.0 mkl bleach 4.1.0 pyhd3eb1b0_0 blinker 1.6.2 py310haa95532_0 blosc 1.21.3 h6c2663c_0 bokeh 3.3.4 py310h9909e9c_0 boost-cpp 1.82.0 h59b6b97_2 botocore 1.31.64 py310haa95532_0 bottleneck 1.3.7 py310h9128911_0 brotli 1.0.9 h2bbff1b_7 brotli-bin 1.0.9 h2bbff1b_7 brotli-python 1.0.9 py310hd77b12b_7 bzip2 1.0.8 he774522_0 c-ares 1.19.1 h2bbff1b_0 c-blosc2 2.12.0 h2f4ed9d_0 ca-certificates 2023.12.12 haa95532_0 cachetools 4.2.2 pyhd3eb1b0_0 cartopy 0.22.0 py310h4748b25_0 certifi 2024.2.2 py310haa95532_0 cffi 1.16.0 py310h2bbff1b_0 cfitsio 3.470 h2bbff1b_7 cftime 1.6.2 py310h9128911_0 chardet 4.0.0 py310haa95532_1003 charls 2.2.0 h6c2663c_0 charset-normalizer 2.0.4 pyhd3eb1b0_0 click 8.1.7 py310haa95532_0 cloudpickle 2.2.1 py310haa95532_0 colorama 0.4.6 py310haa95532_0 colorcet 3.0.1 py310haa95532_0 comm 0.1.2 py310haa95532_0 constantly 23.10.4 py310haa95532_0 contourpy 1.2.0 py310h59b6b97_0 cookiecutter 2.5.0 py310haa95532_0 cryptography 42.0.2 py310h89fc84f_0 cssselect 1.2.0 py310haa95532_0 curl 8.5.0 he2ea4bf_0 cycler 0.11.0 pyhd3eb1b0_0 cytoolz 0.12.2 py310h2bbff1b_0 dask 2023.11.0 py310haa95532_0 dask-core 2023.11.0 py310haa95532_0 datashader 0.16.0 py310haa95532_0 dav1d 1.2.1 h2bbff1b_0 debugpy 1.6.7 py310hd77b12b_0 decorator 5.1.1 pyhd3eb1b0_0 defusedxml 0.7.1 pyhd3eb1b0_0 diff-match-patch 20200713 pyhd3eb1b0_0 dill 0.3.7 py310haa95532_0 distributed 2023.11.0 py310haa95532_0 docstring-to-markdown 0.11 py310haa95532_0 docutils 0.18.1 py310haa95532_3 entrypoints 0.4 py310haa95532_0 et_xmlfile 1.1.0 py310haa95532_0 exceptiongroup 1.2.0 py310haa95532_0 executing 0.8.3 pyhd3eb1b0_0 filelock 3.13.1 py310haa95532_0 flake8 6.0.0 py310haa95532_0 flask 2.2.5 py310haa95532_0 fonttools 4.25.0 pyhd3eb1b0_0 freetype 2.12.1 ha860e81_0 frozenlist 1.4.0 py310h2bbff1b_0 fsspec 2023.10.0 py310haa95532_0 gensim 4.3.0 py310h4ed8f06_0 geos 3.8.0 h33f27b4_0 gflags 2.2.2 hd77b12b_1 giflib 5.2.1 h8cc25b3_3 gitdb 4.0.7 pyhd3eb1b0_0 gitpython 3.1.37 py310haa95532_0 glog 0.5.0 hd77b12b_1 gmpy2 2.1.2 py310h7f96b67_0 greenlet 3.0.1 py310hd77b12b_0 grpc-cpp 1.48.2 hfe90ff0_1 h5py 3.9.0 py310hfc34f40_0 hdf4 4.2.13 h712560f_2 hdf5 1.12.1 h51c971a_3 heapdict 1.0.1 pyhd3eb1b0_0 holoviews 1.18.3 py310haa95532_0 hvplot 0.9.2 py310haa95532_0 hyperlink 21.0.0 pyhd3eb1b0_0 icc_rt 2022.1.0 h6049295_2 icu 73.1 h6c2663c_0 idna 3.4 py310haa95532_0 imagecodecs 2023.1.23 py310h6c6a46e_0 imageio 2.33.1 py310haa95532_0 imagesize 1.4.1 py310haa95532_0 imbalanced-learn 0.11.0 py310haa95532_1 importlib-metadata 7.0.1 py310haa95532_0 importlib_metadata 7.0.1 hd3eb1b0_0 incremental 21.3.0 pyhd3eb1b0_0 inflection 0.5.1 py310haa95532_0 iniconfig 1.1.1 pyhd3eb1b0_0 intake 0.6.8 py310haa95532_0 intel-openmp 2023.1.0 h59b6b97_46320 intervaltree 3.1.0 pyhd3eb1b0_0 ipykernel 6.28.0 py310haa95532_0 ipython 8.20.0 py310haa95532_0 ipython_genutils 0.2.0 pyhd3eb1b0_1 ipywidgets 7.6.5 pyhd3eb1b0_2 isort 5.9.3 pyhd3eb1b0_0 itemadapter 0.3.0 pyhd3eb1b0_0 itemloaders 1.0.4 pyhd3eb1b0_1 itsdangerous 2.0.1 pyhd3eb1b0_0 jaraco.classes 3.2.1 pyhd3eb1b0_0 jedi 0.18.1 py310haa95532_1 jellyfish 1.0.1 py310h36a85e1_0 jinja2 3.1.3 py310haa95532_0 jmespath 1.0.1 py310haa95532_0 joblib 1.2.0 py310haa95532_0 jpeg 9e h2bbff1b_1 jq 1.6 haa95532_1 json5 0.9.6 pyhd3eb1b0_0 jsonschema 4.19.2 py310haa95532_0 jsonschema-specifications 2023.7.1 py310haa95532_0 jupyter 1.0.0 py310haa95532_9 jupyter-lsp 2.2.0 py310haa95532_0 jupyter-server-mathjax 0.2.6 py310haa95532_0 jupyter_client 8.6.0 py310haa95532_0 jupyter_console 6.6.3 py310haa95532_0 jupyter_core 5.5.0 py310haa95532_0 jupyter_events 0.8.0 py310haa95532_0 jupyter_server 2.10.0 py310haa95532_0 jupyter_server_terminals 0.4.4 py310haa95532_1 jupyterlab 4.0.11 py310haa95532_0 jupyterlab-git 0.50.0 py310haa95532_0 jupyterlab-variableinspector 3.1.0 py310haa95532_0 jupyterlab_pygments 0.1.2 py_0 jupyterlab_server 2.25.1 py310haa95532_0 jupyterlab_widgets 3.0.9 py310haa95532_0 keyring 23.13.1 py310haa95532_0 kiwisolver 1.4.4 py310hd77b12b_0 krb5 1.20.1 h5b6d351_0 lazy-object-proxy 1.6.0 py310h2bbff1b_0 lazy_loader 0.3 py310haa95532_0 lcms2 2.12 h83e58a3_0 lerc 3.0 hd77b12b_0 libaec 1.0.4 h33f27b4_1 libavif 0.11.1 h2bbff1b_0 libboost 1.82.0 h3399ecb_2 libbrotlicommon 1.0.9 h2bbff1b_7 libbrotlidec 1.0.9 h2bbff1b_7 libbrotlienc 1.0.9 h2bbff1b_7 libclang 14.0.6 default_hb5a9fac_1 libclang13 14.0.6 default_h8e68704_1 libcurl 8.5.0 h86230a5_0 libdeflate 1.17 h2bbff1b_1 libevent 2.1.12 h56d1f94_1 libffi 3.4.4 hd77b12b_0 libiconv 1.16 h2bbff1b_2 libnetcdf 4.8.1 h6685c40_4 libpng 1.6.39 h8cc25b3_0 libpq 12.17 h906ac69_0 libprotobuf 3.20.3 h23ce68f_0 libsodium 1.0.18 h62dcd97_0 libspatialindex 1.9.3 h6c2663c_0 libssh2 1.10.0 he2ea4bf_2 libthrift 0.15.0 h4364b78_2 libtiff 4.5.1 hd77b12b_0 libwebp-base 1.3.2 h2bbff1b_0 libxml2 2.10.4 h0ad7f3c_1 libxslt 1.1.37 h2bbff1b_1 libzip 1.8.0 h289538f_1 libzopfli 1.0.3 ha925a31_0 linkify-it-py 2.0.0 py310haa95532_0 llvmlite 0.42.0 py310hf2fb9eb_0 locket 1.0.0 py310haa95532_0 lxml 4.9.3 py310h09808a7_0 lz4 4.3.2 py310h2bbff1b_0 lz4-c 1.9.4 h2bbff1b_0 lzo 2.10 he774522_2 m2w64-gcc-libgfortran 5.3.0 6 conda-forge m2w64-gcc-libs 5.3.0 7 conda-forge m2w64-gcc-libs-core 5.3.0 7 conda-forge m2w64-gmp 6.1.0 2 conda-forge m2w64-libwinpthread-git 5.0.0.4634.697f757 2 markdown 3.4.1 py310haa95532_0 markdown-it-py 2.2.0 py310haa95532_1 markupsafe 2.1.3 py310h2bbff1b_0 matplotlib 3.8.0 py310haa95532_0 matplotlib-base 3.8.0 py310h4ed8f06_0 matplotlib-inline 0.1.6 py310haa95532_0 mccabe 0.7.0 pyhd3eb1b0_0 mdit-py-plugins 0.3.0 py310haa95532_0 mdurl 0.1.0 py310haa95532_0 menuinst 2.0.2 py310hd77b12b_0 mistune 2.0.4 py310haa95532_0 mkl 2023.1.0 h6b88ed4_46358 mkl-service 2.4.0 py310h2bbff1b_1 mkl_fft 1.3.8 py310h2bbff1b_0 mkl_random 1.2.4 py310h59b6b97_0 more-itertools 10.1.0 py310haa95532_0 mpc 1.1.0 h7edee0f_1 mpfr 4.0.2 h62dcd97_1 mpir 3.0.0 hec2e145_1 mpmath 1.3.0 py310haa95532_0 msgpack-python 1.0.3 py310h59b6b97_0 msys2-conda-epoch 20160418 1 multidict 6.0.4 py310h2bbff1b_0 multipledispatch 0.6.0 py310haa95532_0 munkres 1.1.4 py_0 mypy 1.8.0 py310h2bbff1b_0 mypy_extensions 1.0.0 py310haa95532_0 nbclient 0.8.0 py310haa95532_0 nbconvert 7.10.0 py310haa95532_0 nbdime 4.0.1 py310haa95532_0 nbformat 5.9.2 py310haa95532_0 nest-asyncio 1.5.6 py310haa95532_0 netcdf4 1.6.2 py310hadf358c_0 networkx 3.1 py310haa95532_0 nltk 3.8.1 py310haa95532_0 notebook 7.0.8 py310haa95532_0 notebook-shim 0.2.3 py310haa95532_0 numba 0.59.0 py310hd77b12b_0 numexpr 2.8.7 py310h2cd9be0_0 numpy 1.26.3 py310h055cbcc_0 numpy-base 1.26.3 py310h65a83cf_0 numpydoc 1.5.0 py310haa95532_0 openjpeg 2.4.0 h4fc8c34_0 openpyxl 3.0.10 py310h2bbff1b_0 openssl 3.0.13 h2bbff1b_0 orc 1.7.4 h623e30f_1 overrides 7.4.0 py310haa95532_0 packaging 23.1 py310haa95532_0 pandas 2.1.4 py310h4ed8f06_0 pandocfilters 1.5.0 pyhd3eb1b0_0 panel 1.3.8 py310haa95532_0 param 2.0.2 py310haa95532_0 paramiko 2.8.1 pyhd3eb1b0_0 parsel 1.8.1 py310haa95532_0 parso 0.8.3 pyhd3eb1b0_0 partd 1.4.1 py310haa95532_0 pathspec 0.10.3 py310haa95532_0 patsy 0.5.3 py310haa95532_0 pexpect 4.8.0 pyhd3eb1b0_3 pickleshare 0.7.5 pyhd3eb1b0_1003 pillow 10.2.0 py310h2bbff1b_0 pip 23.3.1 py310haa95532_0 platformdirs 3.10.0 py310haa95532_0 plotly 5.9.0 py310haa95532_0 pluggy 1.0.0 py310haa95532_1 ply 3.11 py310haa95532_0 proj 9.3.1 ha107b6e_0 prometheus_client 0.14.1 py310haa95532_0 prompt-toolkit 3.0.43 py310haa95532_0 prompt_toolkit 3.0.43 hd3eb1b0_0 protego 0.1.16 py_0 protobuf 3.20.3 py310hd77b12b_0 psutil 5.9.0 py310h2bbff1b_0 ptyprocess 0.7.0 pyhd3eb1b0_2 pure_eval 0.2.2 pyhd3eb1b0_0 py-cpuinfo 9.0.0 py310haa95532_0 pyarrow 14.0.2 py310h3d56cd0_0 pyasn1 0.4.8 pyhd3eb1b0_0 pyasn1-modules 0.2.8 py_0 pycodestyle 2.10.0 py310haa95532_0 pycparser 2.21 pyhd3eb1b0_0 pyct 0.5.0 py310haa95532_0 pycurl 7.45.2 py310he2ea4bf_1 pydeck 0.8.0 py310haa95532_2 pydispatcher 2.0.5 py310haa95532_2 pydocstyle 6.3.0 py310haa95532_0 pyerfa 2.0.0 py310h2bbff1b_0 pyflakes 3.0.1 py310haa95532_0 pygments 2.15.1 py310haa95532_1 pylint 2.16.2 py310haa95532_0 pylint-venv 2.3.0 pypi_0 pypi pyls-spyder 0.4.0 pyhd3eb1b0_0 pynacl 1.5.0 py310h8cc25b3_0 pyodbc 5.0.1 py310hd77b12b_0 pyopenssl 24.0.0 py310haa95532_0 pyparsing 3.0.9 py310haa95532_0 pyproj 3.6.1 py310h8d66fa9_0 pyqt 5.15.10 py310hd77b12b_0 pyqt5-sip 12.13.0 py310h2bbff1b_0 pyqtwebengine 5.15.10 py310hd77b12b_0 pyshp 2.3.1 py310haa95532_0 pysocks 1.7.1 py310haa95532_0 pytables 3.9.2 py310hcff0796_0 pytest 7.4.0 py310haa95532_0 python 3.10.13 he1021f5_0 python-dateutil 2.8.2 pyhd3eb1b0_0 python-fastjsonschema 2.16.2 py310haa95532_0 python-json-logger 2.0.7 py310haa95532_0 python-lmdb 1.4.1 py310hd77b12b_0 python-lsp-black 1.2.1 py310haa95532_0 python-lsp-jsonrpc 1.0.0 pyhd3eb1b0_0 python-lsp-server 1.7.2 py310haa95532_0 python-slugify 5.0.2 pyhd3eb1b0_0 python-snappy 0.6.1 py310hd77b12b_0 python-tzdata 2023.3 pyhd3eb1b0_0 python_abi 3.10 2_cp310 conda-forge pytoolconfig 1.2.6 py310haa95532_0 pytz 2023.3.post1 py310haa95532_0 pyviz_comms 3.0.0 py310haa95532_0 pywavelets 1.5.0 py310h9128911_0 pywin32 305 py310h2bbff1b_0 pywin32-ctypes 0.2.0 py310haa95532_1000 pywinpty 2.0.10 py310h5da7b33_0 pyyaml 6.0.1 py310h2bbff1b_0 pyzmq 25.1.2 py310hd77b12b_0 qdarkstyle 3.0.2 pyhd3eb1b0_0 qstylizer 0.2.2 pypi_0 pypi qt-main 5.15.2 h19c9488_10 qt-webengine 5.15.9 h5bd16bc_7 qtawesome 1.2.2 pypi_0 pypi qtconsole 5.4.2 py310haa95532_0 qtpy 2.4.1 py310haa95532_0 queuelib 1.6.2 py310haa95532_0 re2 2022.04.01 hd77b12b_0 referencing 0.30.2 py310haa95532_0 regex 2023.10.3 py310h2bbff1b_0 requests 2.31.0 py310haa95532_1 requests-file 1.5.1 pyhd3eb1b0_0 rfc3339-validator 0.1.4 py310haa95532_0 rfc3986-validator 0.1.1 py310haa95532_0 rich 13.3.5 py310haa95532_0 rope 1.7.0 py310haa95532_0 rpds-py 0.10.6 py310h062c2fa_0 rtree 1.0.1 py310h2eaa2aa_0 s3fs 2023.10.0 py310haa95532_0 scikit-image 0.22.0 py310h25bd2df_0 scikit-learn 1.3.0 py310h4ed8f06_1 scipy 1.11.4 py310h309d312_0 scrapy 2.8.0 py310haa95532_0 seaborn 0.12.2 py310haa95532_0 send2trash 1.8.2 py310haa95532_0 service_identity 18.1.0 pyhd3eb1b0_1 setuptools 68.2.2 py310haa95532_0 shapely 2.0.1 py310h6c53999_0 sip 6.7.12 py310hd77b12b_0 six 1.16.0 pyhd3eb1b0_1 smart_open 5.2.1 py310haa95532_0 smmap 4.0.0 pyhd3eb1b0_0 snappy 1.1.10 h6c2663c_1 sniffio 1.3.0 py310haa95532_0 snowballstemmer 2.2.0 pyhd3eb1b0_0 sortedcontainers 2.4.0 pyhd3eb1b0_0 soupsieve 2.5 py310haa95532_0 sphinx 5.0.2 py310haa95532_0 sphinxcontrib-applehelp 1.0.2 pyhd3eb1b0_0 sphinxcontrib-devhelp 1.0.2 pyhd3eb1b0_0 sphinxcontrib-htmlhelp 2.0.0 pyhd3eb1b0_0 sphinxcontrib-jsmath 1.0.1 pyhd3eb1b0_0 sphinxcontrib-qthelp 1.0.3 pyhd3eb1b0_0 sphinxcontrib-serializinghtml 1.1.5 pyhd3eb1b0_0 spyder 5.4.3 py310haa95532_1 spyder-kernels 2.4.4 py310haa95532_0 sqlalchemy 2.0.25 py310h2bbff1b_0 sqlite 3.41.2 h2bbff1b_0 stack_data 0.2.0 pyhd3eb1b0_0 statsmodels 0.14.0 py310h9128911_0 streamlit 1.30.0 py310haa95532_0 sympy 1.12 py310haa95532_0 tabulate 0.9.0 py310haa95532_0 tbb 2021.8.0 h59b6b97_0 tblib 1.7.0 pyhd3eb1b0_0 tenacity 8.2.2 py310haa95532_0 terminado 0.17.1 py310haa95532_0 text-unidecode 1.3 pyhd3eb1b0_0 textdistance 4.2.1 pyhd3eb1b0_0 threadpoolctl 2.2.0 pyh0d69192_0 three-merge 0.1.1 pyhd3eb1b0_0 tifffile 2023.4.12 py310haa95532_0 tinycss2 1.2.1 py310haa95532_0 tk 8.6.12 h2bbff1b_0 tldextract 3.2.0 pyhd3eb1b0_0 toml 0.10.2 pyhd3eb1b0_0 tomli 2.0.1 py310haa95532_0 tomlkit 0.11.1 py310haa95532_0 toolz 0.12.0 py310haa95532_0 tornado 6.3.3 py310h2bbff1b_0 tqdm 4.65.0 py310h9909e9c_0 traitlets 5.7.1 py310haa95532_0 twisted 22.10.0 py310h2bbff1b_0 twisted-iocpsupport 1.0.2 py310h2bbff1b_0 typing-extensions 4.9.0 py310haa95532_1 typing_extensions 4.9.0 py310haa95532_1 tzdata 2023d h04d1e81_0 tzlocal 2.1 py310haa95532_1 uc-micro-py 1.0.1 py310haa95532_0 ujson 5.4.0 py310hd77b12b_0 unidecode 1.2.0 pyhd3eb1b0_0 urllib3 2.0.7 py310haa95532_0 utf8proc 2.6.1 h2bbff1b_1 validators 0.18.2 pyhd3eb1b0_0 vc 14.2 h21ff451_1 vs2015_runtime 14.27.29016 h5e58377_2 w3lib 1.21.0 pyhd3eb1b0_0 watchdog 2.1.6 py310haa95532_0 wcwidth 0.2.5 pyhd3eb1b0_0 webencodings 0.5.1 py310haa95532_1 websocket-client 0.58.0 py310haa95532_4 werkzeug 2.2.3 py310haa95532_0 whatthepatch 1.0.2 py310haa95532_0 wheel 0.41.2 py310haa95532_0 widgetsnbextension 3.5.2 py310haa95532_1 win_inet_pton 1.1.0 py310haa95532_0 winpty 0.4.3 4 wrapt 1.14.1 py310h2bbff1b_0 wrf-python 1.3.4.1 py310hf8fe482_2 conda-forge xarray 2023.6.0 py310haa95532_0 xlwings 0.29.1 py310haa95532_0 xyzservices 2022.9.0 py310haa95532_1 xz 5.4.5 h8cc25b3_0 yaml 0.2.5 he774522_0 yapf 0.31.0 pyhd3eb1b0_0 yarl 1.9.3 py310h2bbff1b_0 zeromq 4.3.5 hd77b12b_0 zfp 1.0.0 hd77b12b_0 zict 3.0.0 py310haa95532_0 zipp 3.17.0 py310haa95532_0 zlib 1.2.13 h8cc25b3_0 zlib-ng 2.0.7 h2bbff1b_0 zope 1.0 py310haa95532_1 zope.interface 5.4.0 py310h2bbff1b_0 zstd 1.5.5 hd43e919_0

December0w0 commented 4 months ago

Hello @December0w0, thank you so much for your response! I changed to python 3.10.13, I don't have pycwr installed. The problem is not solved. Here's my package list, maybe any of them needs to be reinstalled:

Name Version Build Channel

abseil-cpp 20211102.0 hd77b12b_0 aiobotocore 2.7.0 py310haa95532_0 aiohttp 3.9.3 py310h2bbff1b_0 aioitertools 0.7.1 pyhd3eb1b0_0 aiosignal 1.2.0 pyhd3eb1b0_0 alabaster 0.7.12 pyhd3eb1b0_0 altair 5.0.1 py310haa95532_0 anaconda 2024.02 py310_mkl_0 anyio 4.2.0 py310haa95532_0 aom 3.6.0 hd77b12b_0 appdirs 1.4.4 pyhd3eb1b0_0 argon2-cffi 21.3.0 pyhd3eb1b0_0 argon2-cffi-bindings 21.2.0 py310h2bbff1b_0 arrow 1.2.3 py310haa95532_1 arrow-cpp 14.0.2 ha81ea56_1 astroid 2.14.2 py310haa95532_0 astropy 5.3.4 py310h9128911_0 asttokens 2.0.5 pyhd3eb1b0_0 async-lru 2.0.4 py310haa95532_0 async-timeout 4.0.3 py310haa95532_0 atomicwrites 1.4.0 py_0 attrs 23.1.0 py310haa95532_0 automat 20.2.0 py_0 autopep8 1.6.0 pyhd3eb1b0_1 aws-c-auth 0.6.19 h2bbff1b_0 aws-c-cal 0.5.20 h2bbff1b_0 aws-c-common 0.8.5 h2bbff1b_0 aws-c-compression 0.2.16 h2bbff1b_0 aws-c-event-stream 0.2.15 hd77b12b_0 aws-c-http 0.6.25 h2bbff1b_0 aws-c-io 0.13.10 h2bbff1b_0 aws-c-mqtt 0.7.13 h2bbff1b_0 aws-c-s3 0.1.51 h2bbff1b_0 aws-c-sdkutils 0.1.6 h2bbff1b_0 aws-checksums 0.1.13 h2bbff1b_0 aws-crt-cpp 0.18.16 hd77b12b_0 aws-sdk-cpp 1.10.55 hd77b12b_0 babel 2.11.0 py310haa95532_0 bcrypt 3.2.0 py310h2bbff1b_1 beautifulsoup4 4.12.2 py310haa95532_0 binaryornot 0.4.4 pyhd3eb1b0_1 black 23.11.0 py310haa95532_0 blas 1.0 mkl bleach 4.1.0 pyhd3eb1b0_0 blinker 1.6.2 py310haa95532_0 blosc 1.21.3 h6c2663c_0 bokeh 3.3.4 py310h9909e9c_0 boost-cpp 1.82.0 h59b6b97_2 botocore 1.31.64 py310haa95532_0 bottleneck 1.3.7 py310h9128911_0 brotli 1.0.9 h2bbff1b_7 brotli-bin 1.0.9 h2bbff1b_7 brotli-python 1.0.9 py310hd77b12b_7 bzip2 1.0.8 he774522_0 c-ares 1.19.1 h2bbff1b_0 c-blosc2 2.12.0 h2f4ed9d_0 ca-certificates 2023.12.12 haa95532_0 cachetools 4.2.2 pyhd3eb1b0_0 cartopy 0.22.0 py310h4748b25_0 certifi 2024.2.2 py310haa95532_0 cffi 1.16.0 py310h2bbff1b_0 cfitsio 3.470 h2bbff1b_7 cftime 1.6.2 py310h9128911_0 chardet 4.0.0 py310haa95532_1003 charls 2.2.0 h6c2663c_0 charset-normalizer 2.0.4 pyhd3eb1b0_0 click 8.1.7 py310haa95532_0 cloudpickle 2.2.1 py310haa95532_0 colorama 0.4.6 py310haa95532_0 colorcet 3.0.1 py310haa95532_0 comm 0.1.2 py310haa95532_0 constantly 23.10.4 py310haa95532_0 contourpy 1.2.0 py310h59b6b97_0 cookiecutter 2.5.0 py310haa95532_0 cryptography 42.0.2 py310h89fc84f_0 cssselect 1.2.0 py310haa95532_0 curl 8.5.0 he2ea4bf_0 cycler 0.11.0 pyhd3eb1b0_0 cytoolz 0.12.2 py310h2bbff1b_0 dask 2023.11.0 py310haa95532_0 dask-core 2023.11.0 py310haa95532_0 datashader 0.16.0 py310haa95532_0 dav1d 1.2.1 h2bbff1b_0 debugpy 1.6.7 py310hd77b12b_0 decorator 5.1.1 pyhd3eb1b0_0 defusedxml 0.7.1 pyhd3eb1b0_0 diff-match-patch 20200713 pyhd3eb1b0_0 dill 0.3.7 py310haa95532_0 distributed 2023.11.0 py310haa95532_0 docstring-to-markdown 0.11 py310haa95532_0 docutils 0.18.1 py310haa95532_3 entrypoints 0.4 py310haa95532_0 et_xmlfile 1.1.0 py310haa95532_0 exceptiongroup 1.2.0 py310haa95532_0 executing 0.8.3 pyhd3eb1b0_0 filelock 3.13.1 py310haa95532_0 flake8 6.0.0 py310haa95532_0 flask 2.2.5 py310haa95532_0 fonttools 4.25.0 pyhd3eb1b0_0 freetype 2.12.1 ha860e81_0 frozenlist 1.4.0 py310h2bbff1b_0 fsspec 2023.10.0 py310haa95532_0 gensim 4.3.0 py310h4ed8f06_0 geos 3.8.0 h33f27b4_0 gflags 2.2.2 hd77b12b_1 giflib 5.2.1 h8cc25b3_3 gitdb 4.0.7 pyhd3eb1b0_0 gitpython 3.1.37 py310haa95532_0 glog 0.5.0 hd77b12b_1 gmpy2 2.1.2 py310h7f96b67_0 greenlet 3.0.1 py310hd77b12b_0 grpc-cpp 1.48.2 hfe90ff0_1 h5py 3.9.0 py310hfc34f40_0 hdf4 4.2.13 h712560f_2 hdf5 1.12.1 h51c971a_3 heapdict 1.0.1 pyhd3eb1b0_0 holoviews 1.18.3 py310haa95532_0 hvplot 0.9.2 py310haa95532_0 hyperlink 21.0.0 pyhd3eb1b0_0 icc_rt 2022.1.0 h6049295_2 icu 73.1 h6c2663c_0 idna 3.4 py310haa95532_0 imagecodecs 2023.1.23 py310h6c6a46e_0 imageio 2.33.1 py310haa95532_0 imagesize 1.4.1 py310haa95532_0 imbalanced-learn 0.11.0 py310haa95532_1 importlib-metadata 7.0.1 py310haa95532_0 importlib_metadata 7.0.1 hd3eb1b0_0 incremental 21.3.0 pyhd3eb1b0_0 inflection 0.5.1 py310haa95532_0 iniconfig 1.1.1 pyhd3eb1b0_0 intake 0.6.8 py310haa95532_0 intel-openmp 2023.1.0 h59b6b97_46320 intervaltree 3.1.0 pyhd3eb1b0_0 ipykernel 6.28.0 py310haa95532_0 ipython 8.20.0 py310haa95532_0 ipython_genutils 0.2.0 pyhd3eb1b0_1 ipywidgets 7.6.5 pyhd3eb1b0_2 isort 5.9.3 pyhd3eb1b0_0 itemadapter 0.3.0 pyhd3eb1b0_0 itemloaders 1.0.4 pyhd3eb1b0_1 itsdangerous 2.0.1 pyhd3eb1b0_0 jaraco.classes 3.2.1 pyhd3eb1b0_0 jedi 0.18.1 py310haa95532_1 jellyfish 1.0.1 py310h36a85e1_0 jinja2 3.1.3 py310haa95532_0 jmespath 1.0.1 py310haa95532_0 joblib 1.2.0 py310haa95532_0 jpeg 9e h2bbff1b_1 jq 1.6 haa95532_1 json5 0.9.6 pyhd3eb1b0_0 jsonschema 4.19.2 py310haa95532_0 jsonschema-specifications 2023.7.1 py310haa95532_0 jupyter 1.0.0 py310haa95532_9 jupyter-lsp 2.2.0 py310haa95532_0 jupyter-server-mathjax 0.2.6 py310haa95532_0 jupyter_client 8.6.0 py310haa95532_0 jupyter_console 6.6.3 py310haa95532_0 jupyter_core 5.5.0 py310haa95532_0 jupyter_events 0.8.0 py310haa95532_0 jupyter_server 2.10.0 py310haa95532_0 jupyter_server_terminals 0.4.4 py310haa95532_1 jupyterlab 4.0.11 py310haa95532_0 jupyterlab-git 0.50.0 py310haa95532_0 jupyterlab-variableinspector 3.1.0 py310haa95532_0 jupyterlab_pygments 0.1.2 py_0 jupyterlab_server 2.25.1 py310haa95532_0 jupyterlab_widgets 3.0.9 py310haa95532_0 keyring 23.13.1 py310haa95532_0 kiwisolver 1.4.4 py310hd77b12b_0 krb5 1.20.1 h5b6d351_0 lazy-object-proxy 1.6.0 py310h2bbff1b_0 lazy_loader 0.3 py310haa95532_0 lcms2 2.12 h83e58a3_0 lerc 3.0 hd77b12b_0 libaec 1.0.4 h33f27b4_1 libavif 0.11.1 h2bbff1b_0 libboost 1.82.0 h3399ecb_2 libbrotlicommon 1.0.9 h2bbff1b_7 libbrotlidec 1.0.9 h2bbff1b_7 libbrotlienc 1.0.9 h2bbff1b_7 libclang 14.0.6 default_hb5a9fac_1 libclang13 14.0.6 default_h8e68704_1 libcurl 8.5.0 h86230a5_0 libdeflate 1.17 h2bbff1b_1 libevent 2.1.12 h56d1f94_1 libffi 3.4.4 hd77b12b_0 libiconv 1.16 h2bbff1b_2 libnetcdf 4.8.1 h6685c40_4 libpng 1.6.39 h8cc25b3_0 libpq 12.17 h906ac69_0 libprotobuf 3.20.3 h23ce68f_0 libsodium 1.0.18 h62dcd97_0 libspatialindex 1.9.3 h6c2663c_0 libssh2 1.10.0 he2ea4bf_2 libthrift 0.15.0 h4364b78_2 libtiff 4.5.1 hd77b12b_0 libwebp-base 1.3.2 h2bbff1b_0 libxml2 2.10.4 h0ad7f3c_1 libxslt 1.1.37 h2bbff1b_1 libzip 1.8.0 h289538f_1 libzopfli 1.0.3 ha925a31_0 linkify-it-py 2.0.0 py310haa95532_0 llvmlite 0.42.0 py310hf2fb9eb_0 locket 1.0.0 py310haa95532_0 lxml 4.9.3 py310h09808a7_0 lz4 4.3.2 py310h2bbff1b_0 lz4-c 1.9.4 h2bbff1b_0 lzo 2.10 he774522_2 m2w64-gcc-libgfortran 5.3.0 6 conda-forge m2w64-gcc-libs 5.3.0 7 conda-forge m2w64-gcc-libs-core 5.3.0 7 conda-forge m2w64-gmp 6.1.0 2 conda-forge m2w64-libwinpthread-git 5.0.0.4634.697f757 2 markdown 3.4.1 py310haa95532_0 markdown-it-py 2.2.0 py310haa95532_1 markupsafe 2.1.3 py310h2bbff1b_0 matplotlib 3.8.0 py310haa95532_0 matplotlib-base 3.8.0 py310h4ed8f06_0 matplotlib-inline 0.1.6 py310haa95532_0 mccabe 0.7.0 pyhd3eb1b0_0 mdit-py-plugins 0.3.0 py310haa95532_0 mdurl 0.1.0 py310haa95532_0 menuinst 2.0.2 py310hd77b12b_0 mistune 2.0.4 py310haa95532_0 mkl 2023.1.0 h6b88ed4_46358 mkl-service 2.4.0 py310h2bbff1b_1 mkl_fft 1.3.8 py310h2bbff1b_0 mkl_random 1.2.4 py310h59b6b97_0 more-itertools 10.1.0 py310haa95532_0 mpc 1.1.0 h7edee0f_1 mpfr 4.0.2 h62dcd97_1 mpir 3.0.0 hec2e145_1 mpmath 1.3.0 py310haa95532_0 msgpack-python 1.0.3 py310h59b6b97_0 msys2-conda-epoch 20160418 1 multidict 6.0.4 py310h2bbff1b_0 multipledispatch 0.6.0 py310haa95532_0 munkres 1.1.4 py_0 mypy 1.8.0 py310h2bbff1b_0 mypy_extensions 1.0.0 py310haa95532_0 nbclient 0.8.0 py310haa95532_0 nbconvert 7.10.0 py310haa95532_0 nbdime 4.0.1 py310haa95532_0 nbformat 5.9.2 py310haa95532_0 nest-asyncio 1.5.6 py310haa95532_0 netcdf4 1.6.2 py310hadf358c_0 networkx 3.1 py310haa95532_0 nltk 3.8.1 py310haa95532_0 notebook 7.0.8 py310haa95532_0 notebook-shim 0.2.3 py310haa95532_0 numba 0.59.0 py310hd77b12b_0 numexpr 2.8.7 py310h2cd9be0_0 numpy 1.26.3 py310h055cbcc_0 numpy-base 1.26.3 py310h65a83cf_0 numpydoc 1.5.0 py310haa95532_0 openjpeg 2.4.0 h4fc8c34_0 openpyxl 3.0.10 py310h2bbff1b_0 openssl 3.0.13 h2bbff1b_0 orc 1.7.4 h623e30f_1 overrides 7.4.0 py310haa95532_0 packaging 23.1 py310haa95532_0 pandas 2.1.4 py310h4ed8f06_0 pandocfilters 1.5.0 pyhd3eb1b0_0 panel 1.3.8 py310haa95532_0 param 2.0.2 py310haa95532_0 paramiko 2.8.1 pyhd3eb1b0_0 parsel 1.8.1 py310haa95532_0 parso 0.8.3 pyhd3eb1b0_0 partd 1.4.1 py310haa95532_0 pathspec 0.10.3 py310haa95532_0 patsy 0.5.3 py310haa95532_0 pexpect 4.8.0 pyhd3eb1b0_3 pickleshare 0.7.5 pyhd3eb1b0_1003 pillow 10.2.0 py310h2bbff1b_0 pip 23.3.1 py310haa95532_0 platformdirs 3.10.0 py310haa95532_0 plotly 5.9.0 py310haa95532_0 pluggy 1.0.0 py310haa95532_1 ply 3.11 py310haa95532_0 proj 9.3.1 ha107b6e_0 prometheus_client 0.14.1 py310haa95532_0 prompt-toolkit 3.0.43 py310haa95532_0 prompt_toolkit 3.0.43 hd3eb1b0_0 protego 0.1.16 py_0 protobuf 3.20.3 py310hd77b12b_0 psutil 5.9.0 py310h2bbff1b_0 ptyprocess 0.7.0 pyhd3eb1b0_2 pure_eval 0.2.2 pyhd3eb1b0_0 py-cpuinfo 9.0.0 py310haa95532_0 pyarrow 14.0.2 py310h3d56cd0_0 pyasn1 0.4.8 pyhd3eb1b0_0 pyasn1-modules 0.2.8 py_0 pycodestyle 2.10.0 py310haa95532_0 pycparser 2.21 pyhd3eb1b0_0 pyct 0.5.0 py310haa95532_0 pycurl 7.45.2 py310he2ea4bf_1 pydeck 0.8.0 py310haa95532_2 pydispatcher 2.0.5 py310haa95532_2 pydocstyle 6.3.0 py310haa95532_0 pyerfa 2.0.0 py310h2bbff1b_0 pyflakes 3.0.1 py310haa95532_0 pygments 2.15.1 py310haa95532_1 pylint 2.16.2 py310haa95532_0 pylint-venv 2.3.0 pypi_0 pypi pyls-spyder 0.4.0 pyhd3eb1b0_0 pynacl 1.5.0 py310h8cc25b3_0 pyodbc 5.0.1 py310hd77b12b_0 pyopenssl 24.0.0 py310haa95532_0 pyparsing 3.0.9 py310haa95532_0 pyproj 3.6.1 py310h8d66fa9_0 pyqt 5.15.10 py310hd77b12b_0 pyqt5-sip 12.13.0 py310h2bbff1b_0 pyqtwebengine 5.15.10 py310hd77b12b_0 pyshp 2.3.1 py310haa95532_0 pysocks 1.7.1 py310haa95532_0 pytables 3.9.2 py310hcff0796_0 pytest 7.4.0 py310haa95532_0 python 3.10.13 he1021f5_0 python-dateutil 2.8.2 pyhd3eb1b0_0 python-fastjsonschema 2.16.2 py310haa95532_0 python-json-logger 2.0.7 py310haa95532_0 python-lmdb 1.4.1 py310hd77b12b_0 python-lsp-black 1.2.1 py310haa95532_0 python-lsp-jsonrpc 1.0.0 pyhd3eb1b0_0 python-lsp-server 1.7.2 py310haa95532_0 python-slugify 5.0.2 pyhd3eb1b0_0 python-snappy 0.6.1 py310hd77b12b_0 python-tzdata 2023.3 pyhd3eb1b0_0 python_abi 3.10 2_cp310 conda-forge pytoolconfig 1.2.6 py310haa95532_0 pytz 2023.3.post1 py310haa95532_0 pyviz_comms 3.0.0 py310haa95532_0 pywavelets 1.5.0 py310h9128911_0 pywin32 305 py310h2bbff1b_0 pywin32-ctypes 0.2.0 py310haa95532_1000 pywinpty 2.0.10 py310h5da7b33_0 pyyaml 6.0.1 py310h2bbff1b_0 pyzmq 25.1.2 py310hd77b12b_0 qdarkstyle 3.0.2 pyhd3eb1b0_0 qstylizer 0.2.2 pypi_0 pypi qt-main 5.15.2 h19c9488_10 qt-webengine 5.15.9 h5bd16bc_7 qtawesome 1.2.2 pypi_0 pypi qtconsole 5.4.2 py310haa95532_0 qtpy 2.4.1 py310haa95532_0 queuelib 1.6.2 py310haa95532_0 re2 2022.04.01 hd77b12b_0 referencing 0.30.2 py310haa95532_0 regex 2023.10.3 py310h2bbff1b_0 requests 2.31.0 py310haa95532_1 requests-file 1.5.1 pyhd3eb1b0_0 rfc3339-validator 0.1.4 py310haa95532_0 rfc3986-validator 0.1.1 py310haa95532_0 rich 13.3.5 py310haa95532_0 rope 1.7.0 py310haa95532_0 rpds-py 0.10.6 py310h062c2fa_0 rtree 1.0.1 py310h2eaa2aa_0 s3fs 2023.10.0 py310haa95532_0 scikit-image 0.22.0 py310h25bd2df_0 scikit-learn 1.3.0 py310h4ed8f06_1 scipy 1.11.4 py310h309d312_0 scrapy 2.8.0 py310haa95532_0 seaborn 0.12.2 py310haa95532_0 send2trash 1.8.2 py310haa95532_0 service_identity 18.1.0 pyhd3eb1b0_1 setuptools 68.2.2 py310haa95532_0 shapely 2.0.1 py310h6c53999_0 sip 6.7.12 py310hd77b12b_0 six 1.16.0 pyhd3eb1b0_1 smart_open 5.2.1 py310haa95532_0 smmap 4.0.0 pyhd3eb1b0_0 snappy 1.1.10 h6c2663c_1 sniffio 1.3.0 py310haa95532_0 snowballstemmer 2.2.0 pyhd3eb1b0_0 sortedcontainers 2.4.0 pyhd3eb1b0_0 soupsieve 2.5 py310haa95532_0 sphinx 5.0.2 py310haa95532_0 sphinxcontrib-applehelp 1.0.2 pyhd3eb1b0_0 sphinxcontrib-devhelp 1.0.2 pyhd3eb1b0_0 sphinxcontrib-htmlhelp 2.0.0 pyhd3eb1b0_0 sphinxcontrib-jsmath 1.0.1 pyhd3eb1b0_0 sphinxcontrib-qthelp 1.0.3 pyhd3eb1b0_0 sphinxcontrib-serializinghtml 1.1.5 pyhd3eb1b0_0 spyder 5.4.3 py310haa95532_1 spyder-kernels 2.4.4 py310haa95532_0 sqlalchemy 2.0.25 py310h2bbff1b_0 sqlite 3.41.2 h2bbff1b_0 stack_data 0.2.0 pyhd3eb1b0_0 statsmodels 0.14.0 py310h9128911_0 streamlit 1.30.0 py310haa95532_0 sympy 1.12 py310haa95532_0 tabulate 0.9.0 py310haa95532_0 tbb 2021.8.0 h59b6b97_0 tblib 1.7.0 pyhd3eb1b0_0 tenacity 8.2.2 py310haa95532_0 terminado 0.17.1 py310haa95532_0 text-unidecode 1.3 pyhd3eb1b0_0 textdistance 4.2.1 pyhd3eb1b0_0 threadpoolctl 2.2.0 pyh0d69192_0 three-merge 0.1.1 pyhd3eb1b0_0 tifffile 2023.4.12 py310haa95532_0 tinycss2 1.2.1 py310haa95532_0 tk 8.6.12 h2bbff1b_0 tldextract 3.2.0 pyhd3eb1b0_0 toml 0.10.2 pyhd3eb1b0_0 tomli 2.0.1 py310haa95532_0 tomlkit 0.11.1 py310haa95532_0 toolz 0.12.0 py310haa95532_0 tornado 6.3.3 py310h2bbff1b_0 tqdm 4.65.0 py310h9909e9c_0 traitlets 5.7.1 py310haa95532_0 twisted 22.10.0 py310h2bbff1b_0 twisted-iocpsupport 1.0.2 py310h2bbff1b_0 typing-extensions 4.9.0 py310haa95532_1 typing_extensions 4.9.0 py310haa95532_1 tzdata 2023d h04d1e81_0 tzlocal 2.1 py310haa95532_1 uc-micro-py 1.0.1 py310haa95532_0 ujson 5.4.0 py310hd77b12b_0 unidecode 1.2.0 pyhd3eb1b0_0 urllib3 2.0.7 py310haa95532_0 utf8proc 2.6.1 h2bbff1b_1 validators 0.18.2 pyhd3eb1b0_0 vc 14.2 h21ff451_1 vs2015_runtime 14.27.29016 h5e58377_2 w3lib 1.21.0 pyhd3eb1b0_0 watchdog 2.1.6 py310haa95532_0 wcwidth 0.2.5 pyhd3eb1b0_0 webencodings 0.5.1 py310haa95532_1 websocket-client 0.58.0 py310haa95532_4 werkzeug 2.2.3 py310haa95532_0 whatthepatch 1.0.2 py310haa95532_0 wheel 0.41.2 py310haa95532_0 widgetsnbextension 3.5.2 py310haa95532_1 win_inet_pton 1.1.0 py310haa95532_0 winpty 0.4.3 4 wrapt 1.14.1 py310h2bbff1b_0 wrf-python 1.3.4.1 py310hf8fe482_2 conda-forge xarray 2023.6.0 py310haa95532_0 xlwings 0.29.1 py310haa95532_0 xyzservices 2022.9.0 py310haa95532_1 xz 5.4.5 h8cc25b3_0 yaml 0.2.5 he774522_0 yapf 0.31.0 pyhd3eb1b0_0 yarl 1.9.3 py310h2bbff1b_0 zeromq 4.3.5 hd77b12b_0 zfp 1.0.0 hd77b12b_0 zict 3.0.0 py310haa95532_0 zipp 3.17.0 py310haa95532_0 zlib 1.2.13 h8cc25b3_0 zlib-ng 2.0.7 h2bbff1b_0 zope 1.0 py310haa95532_1 zope.interface 5.4.0 py310h2bbff1b_0 zstd 1.5.5 hd43e919_0

Sorry for late replying. I checked your packages carefully and I don't see any problem. Prehaps u should downgrade your python to 3.10.9? My python version is 3.10.9 and it worked.

zhanshi1997 commented 4 months ago

Hello @December0w0, thank you so much for your response! I changed to python 3.10.13, I don't have pycwr installed. The problem is not solved. Here's my package list, maybe any of them needs to be reinstalled:

Name Version Build Channel

abseil-cpp 20211102.0 hd77b12b_0 aiobotocore 2.7.0 py310haa95532_0 aiohttp 3.9.3 py310h2bbff1b_0 aioitertools 0.7.1 pyhd3eb1b0_0 aiosignal 1.2.0 pyhd3eb1b0_0 alabaster 0.7.12 pyhd3eb1b0_0 altair 5.0.1 py310haa95532_0 anaconda 2024.02 py310_mkl_0 anyio 4.2.0 py310haa95532_0 aom 3.6.0 hd77b12b_0 appdirs 1.4.4 pyhd3eb1b0_0 argon2-cffi 21.3.0 pyhd3eb1b0_0 argon2-cffi-bindings 21.2.0 py310h2bbff1b_0 arrow 1.2.3 py310haa95532_1 arrow-cpp 14.0.2 ha81ea56_1 astroid 2.14.2 py310haa95532_0 astropy 5.3.4 py310h9128911_0 asttokens 2.0.5 pyhd3eb1b0_0 async-lru 2.0.4 py310haa95532_0 async-timeout 4.0.3 py310haa95532_0 atomicwrites 1.4.0 py_0 attrs 23.1.0 py310haa95532_0 automat 20.2.0 py_0 autopep8 1.6.0 pyhd3eb1b0_1 aws-c-auth 0.6.19 h2bbff1b_0 aws-c-cal 0.5.20 h2bbff1b_0 aws-c-common 0.8.5 h2bbff1b_0 aws-c-compression 0.2.16 h2bbff1b_0 aws-c-event-stream 0.2.15 hd77b12b_0 aws-c-http 0.6.25 h2bbff1b_0 aws-c-io 0.13.10 h2bbff1b_0 aws-c-mqtt 0.7.13 h2bbff1b_0 aws-c-s3 0.1.51 h2bbff1b_0 aws-c-sdkutils 0.1.6 h2bbff1b_0 aws-checksums 0.1.13 h2bbff1b_0 aws-crt-cpp 0.18.16 hd77b12b_0 aws-sdk-cpp 1.10.55 hd77b12b_0 babel 2.11.0 py310haa95532_0 bcrypt 3.2.0 py310h2bbff1b_1 beautifulsoup4 4.12.2 py310haa95532_0 binaryornot 0.4.4 pyhd3eb1b0_1 black 23.11.0 py310haa95532_0 blas 1.0 mkl bleach 4.1.0 pyhd3eb1b0_0 blinker 1.6.2 py310haa95532_0 blosc 1.21.3 h6c2663c_0 bokeh 3.3.4 py310h9909e9c_0 boost-cpp 1.82.0 h59b6b97_2 botocore 1.31.64 py310haa95532_0 bottleneck 1.3.7 py310h9128911_0 brotli 1.0.9 h2bbff1b_7 brotli-bin 1.0.9 h2bbff1b_7 brotli-python 1.0.9 py310hd77b12b_7 bzip2 1.0.8 he774522_0 c-ares 1.19.1 h2bbff1b_0 c-blosc2 2.12.0 h2f4ed9d_0 ca-certificates 2023.12.12 haa95532_0 cachetools 4.2.2 pyhd3eb1b0_0 cartopy 0.22.0 py310h4748b25_0 certifi 2024.2.2 py310haa95532_0 cffi 1.16.0 py310h2bbff1b_0 cfitsio 3.470 h2bbff1b_7 cftime 1.6.2 py310h9128911_0 chardet 4.0.0 py310haa95532_1003 charls 2.2.0 h6c2663c_0 charset-normalizer 2.0.4 pyhd3eb1b0_0 click 8.1.7 py310haa95532_0 cloudpickle 2.2.1 py310haa95532_0 colorama 0.4.6 py310haa95532_0 colorcet 3.0.1 py310haa95532_0 comm 0.1.2 py310haa95532_0 constantly 23.10.4 py310haa95532_0 contourpy 1.2.0 py310h59b6b97_0 cookiecutter 2.5.0 py310haa95532_0 cryptography 42.0.2 py310h89fc84f_0 cssselect 1.2.0 py310haa95532_0 curl 8.5.0 he2ea4bf_0 cycler 0.11.0 pyhd3eb1b0_0 cytoolz 0.12.2 py310h2bbff1b_0 dask 2023.11.0 py310haa95532_0 dask-core 2023.11.0 py310haa95532_0 datashader 0.16.0 py310haa95532_0 dav1d 1.2.1 h2bbff1b_0 debugpy 1.6.7 py310hd77b12b_0 decorator 5.1.1 pyhd3eb1b0_0 defusedxml 0.7.1 pyhd3eb1b0_0 diff-match-patch 20200713 pyhd3eb1b0_0 dill 0.3.7 py310haa95532_0 distributed 2023.11.0 py310haa95532_0 docstring-to-markdown 0.11 py310haa95532_0 docutils 0.18.1 py310haa95532_3 entrypoints 0.4 py310haa95532_0 et_xmlfile 1.1.0 py310haa95532_0 exceptiongroup 1.2.0 py310haa95532_0 executing 0.8.3 pyhd3eb1b0_0 filelock 3.13.1 py310haa95532_0 flake8 6.0.0 py310haa95532_0 flask 2.2.5 py310haa95532_0 fonttools 4.25.0 pyhd3eb1b0_0 freetype 2.12.1 ha860e81_0 frozenlist 1.4.0 py310h2bbff1b_0 fsspec 2023.10.0 py310haa95532_0 gensim 4.3.0 py310h4ed8f06_0 geos 3.8.0 h33f27b4_0 gflags 2.2.2 hd77b12b_1 giflib 5.2.1 h8cc25b3_3 gitdb 4.0.7 pyhd3eb1b0_0 gitpython 3.1.37 py310haa95532_0 glog 0.5.0 hd77b12b_1 gmpy2 2.1.2 py310h7f96b67_0 greenlet 3.0.1 py310hd77b12b_0 grpc-cpp 1.48.2 hfe90ff0_1 h5py 3.9.0 py310hfc34f40_0 hdf4 4.2.13 h712560f_2 hdf5 1.12.1 h51c971a_3 heapdict 1.0.1 pyhd3eb1b0_0 holoviews 1.18.3 py310haa95532_0 hvplot 0.9.2 py310haa95532_0 hyperlink 21.0.0 pyhd3eb1b0_0 icc_rt 2022.1.0 h6049295_2 icu 73.1 h6c2663c_0 idna 3.4 py310haa95532_0 imagecodecs 2023.1.23 py310h6c6a46e_0 imageio 2.33.1 py310haa95532_0 imagesize 1.4.1 py310haa95532_0 imbalanced-learn 0.11.0 py310haa95532_1 importlib-metadata 7.0.1 py310haa95532_0 importlib_metadata 7.0.1 hd3eb1b0_0 incremental 21.3.0 pyhd3eb1b0_0 inflection 0.5.1 py310haa95532_0 iniconfig 1.1.1 pyhd3eb1b0_0 intake 0.6.8 py310haa95532_0 intel-openmp 2023.1.0 h59b6b97_46320 intervaltree 3.1.0 pyhd3eb1b0_0 ipykernel 6.28.0 py310haa95532_0 ipython 8.20.0 py310haa95532_0 ipython_genutils 0.2.0 pyhd3eb1b0_1 ipywidgets 7.6.5 pyhd3eb1b0_2 isort 5.9.3 pyhd3eb1b0_0 itemadapter 0.3.0 pyhd3eb1b0_0 itemloaders 1.0.4 pyhd3eb1b0_1 itsdangerous 2.0.1 pyhd3eb1b0_0 jaraco.classes 3.2.1 pyhd3eb1b0_0 jedi 0.18.1 py310haa95532_1 jellyfish 1.0.1 py310h36a85e1_0 jinja2 3.1.3 py310haa95532_0 jmespath 1.0.1 py310haa95532_0 joblib 1.2.0 py310haa95532_0 jpeg 9e h2bbff1b_1 jq 1.6 haa95532_1 json5 0.9.6 pyhd3eb1b0_0 jsonschema 4.19.2 py310haa95532_0 jsonschema-specifications 2023.7.1 py310haa95532_0 jupyter 1.0.0 py310haa95532_9 jupyter-lsp 2.2.0 py310haa95532_0 jupyter-server-mathjax 0.2.6 py310haa95532_0 jupyter_client 8.6.0 py310haa95532_0 jupyter_console 6.6.3 py310haa95532_0 jupyter_core 5.5.0 py310haa95532_0 jupyter_events 0.8.0 py310haa95532_0 jupyter_server 2.10.0 py310haa95532_0 jupyter_server_terminals 0.4.4 py310haa95532_1 jupyterlab 4.0.11 py310haa95532_0 jupyterlab-git 0.50.0 py310haa95532_0 jupyterlab-variableinspector 3.1.0 py310haa95532_0 jupyterlab_pygments 0.1.2 py_0 jupyterlab_server 2.25.1 py310haa95532_0 jupyterlab_widgets 3.0.9 py310haa95532_0 keyring 23.13.1 py310haa95532_0 kiwisolver 1.4.4 py310hd77b12b_0 krb5 1.20.1 h5b6d351_0 lazy-object-proxy 1.6.0 py310h2bbff1b_0 lazy_loader 0.3 py310haa95532_0 lcms2 2.12 h83e58a3_0 lerc 3.0 hd77b12b_0 libaec 1.0.4 h33f27b4_1 libavif 0.11.1 h2bbff1b_0 libboost 1.82.0 h3399ecb_2 libbrotlicommon 1.0.9 h2bbff1b_7 libbrotlidec 1.0.9 h2bbff1b_7 libbrotlienc 1.0.9 h2bbff1b_7 libclang 14.0.6 default_hb5a9fac_1 libclang13 14.0.6 default_h8e68704_1 libcurl 8.5.0 h86230a5_0 libdeflate 1.17 h2bbff1b_1 libevent 2.1.12 h56d1f94_1 libffi 3.4.4 hd77b12b_0 libiconv 1.16 h2bbff1b_2 libnetcdf 4.8.1 h6685c40_4 libpng 1.6.39 h8cc25b3_0 libpq 12.17 h906ac69_0 libprotobuf 3.20.3 h23ce68f_0 libsodium 1.0.18 h62dcd97_0 libspatialindex 1.9.3 h6c2663c_0 libssh2 1.10.0 he2ea4bf_2 libthrift 0.15.0 h4364b78_2 libtiff 4.5.1 hd77b12b_0 libwebp-base 1.3.2 h2bbff1b_0 libxml2 2.10.4 h0ad7f3c_1 libxslt 1.1.37 h2bbff1b_1 libzip 1.8.0 h289538f_1 libzopfli 1.0.3 ha925a31_0 linkify-it-py 2.0.0 py310haa95532_0 llvmlite 0.42.0 py310hf2fb9eb_0 locket 1.0.0 py310haa95532_0 lxml 4.9.3 py310h09808a7_0 lz4 4.3.2 py310h2bbff1b_0 lz4-c 1.9.4 h2bbff1b_0 lzo 2.10 he774522_2 m2w64-gcc-libgfortran 5.3.0 6 conda-forge m2w64-gcc-libs 5.3.0 7 conda-forge m2w64-gcc-libs-core 5.3.0 7 conda-forge m2w64-gmp 6.1.0 2 conda-forge m2w64-libwinpthread-git 5.0.0.4634.697f757 2 markdown 3.4.1 py310haa95532_0 markdown-it-py 2.2.0 py310haa95532_1 markupsafe 2.1.3 py310h2bbff1b_0 matplotlib 3.8.0 py310haa95532_0 matplotlib-base 3.8.0 py310h4ed8f06_0 matplotlib-inline 0.1.6 py310haa95532_0 mccabe 0.7.0 pyhd3eb1b0_0 mdit-py-plugins 0.3.0 py310haa95532_0 mdurl 0.1.0 py310haa95532_0 menuinst 2.0.2 py310hd77b12b_0 mistune 2.0.4 py310haa95532_0 mkl 2023.1.0 h6b88ed4_46358 mkl-service 2.4.0 py310h2bbff1b_1 mkl_fft 1.3.8 py310h2bbff1b_0 mkl_random 1.2.4 py310h59b6b97_0 more-itertools 10.1.0 py310haa95532_0 mpc 1.1.0 h7edee0f_1 mpfr 4.0.2 h62dcd97_1 mpir 3.0.0 hec2e145_1 mpmath 1.3.0 py310haa95532_0 msgpack-python 1.0.3 py310h59b6b97_0 msys2-conda-epoch 20160418 1 multidict 6.0.4 py310h2bbff1b_0 multipledispatch 0.6.0 py310haa95532_0 munkres 1.1.4 py_0 mypy 1.8.0 py310h2bbff1b_0 mypy_extensions 1.0.0 py310haa95532_0 nbclient 0.8.0 py310haa95532_0 nbconvert 7.10.0 py310haa95532_0 nbdime 4.0.1 py310haa95532_0 nbformat 5.9.2 py310haa95532_0 nest-asyncio 1.5.6 py310haa95532_0 netcdf4 1.6.2 py310hadf358c_0 networkx 3.1 py310haa95532_0 nltk 3.8.1 py310haa95532_0 notebook 7.0.8 py310haa95532_0 notebook-shim 0.2.3 py310haa95532_0 numba 0.59.0 py310hd77b12b_0 numexpr 2.8.7 py310h2cd9be0_0 numpy 1.26.3 py310h055cbcc_0 numpy-base 1.26.3 py310h65a83cf_0 numpydoc 1.5.0 py310haa95532_0 openjpeg 2.4.0 h4fc8c34_0 openpyxl 3.0.10 py310h2bbff1b_0 openssl 3.0.13 h2bbff1b_0 orc 1.7.4 h623e30f_1 overrides 7.4.0 py310haa95532_0 packaging 23.1 py310haa95532_0 pandas 2.1.4 py310h4ed8f06_0 pandocfilters 1.5.0 pyhd3eb1b0_0 panel 1.3.8 py310haa95532_0 param 2.0.2 py310haa95532_0 paramiko 2.8.1 pyhd3eb1b0_0 parsel 1.8.1 py310haa95532_0 parso 0.8.3 pyhd3eb1b0_0 partd 1.4.1 py310haa95532_0 pathspec 0.10.3 py310haa95532_0 patsy 0.5.3 py310haa95532_0 pexpect 4.8.0 pyhd3eb1b0_3 pickleshare 0.7.5 pyhd3eb1b0_1003 pillow 10.2.0 py310h2bbff1b_0 pip 23.3.1 py310haa95532_0 platformdirs 3.10.0 py310haa95532_0 plotly 5.9.0 py310haa95532_0 pluggy 1.0.0 py310haa95532_1 ply 3.11 py310haa95532_0 proj 9.3.1 ha107b6e_0 prometheus_client 0.14.1 py310haa95532_0 prompt-toolkit 3.0.43 py310haa95532_0 prompt_toolkit 3.0.43 hd3eb1b0_0 protego 0.1.16 py_0 protobuf 3.20.3 py310hd77b12b_0 psutil 5.9.0 py310h2bbff1b_0 ptyprocess 0.7.0 pyhd3eb1b0_2 pure_eval 0.2.2 pyhd3eb1b0_0 py-cpuinfo 9.0.0 py310haa95532_0 pyarrow 14.0.2 py310h3d56cd0_0 pyasn1 0.4.8 pyhd3eb1b0_0 pyasn1-modules 0.2.8 py_0 pycodestyle 2.10.0 py310haa95532_0 pycparser 2.21 pyhd3eb1b0_0 pyct 0.5.0 py310haa95532_0 pycurl 7.45.2 py310he2ea4bf_1 pydeck 0.8.0 py310haa95532_2 pydispatcher 2.0.5 py310haa95532_2 pydocstyle 6.3.0 py310haa95532_0 pyerfa 2.0.0 py310h2bbff1b_0 pyflakes 3.0.1 py310haa95532_0 pygments 2.15.1 py310haa95532_1 pylint 2.16.2 py310haa95532_0 pylint-venv 2.3.0 pypi_0 pypi pyls-spyder 0.4.0 pyhd3eb1b0_0 pynacl 1.5.0 py310h8cc25b3_0 pyodbc 5.0.1 py310hd77b12b_0 pyopenssl 24.0.0 py310haa95532_0 pyparsing 3.0.9 py310haa95532_0 pyproj 3.6.1 py310h8d66fa9_0 pyqt 5.15.10 py310hd77b12b_0 pyqt5-sip 12.13.0 py310h2bbff1b_0 pyqtwebengine 5.15.10 py310hd77b12b_0 pyshp 2.3.1 py310haa95532_0 pysocks 1.7.1 py310haa95532_0 pytables 3.9.2 py310hcff0796_0 pytest 7.4.0 py310haa95532_0 python 3.10.13 he1021f5_0 python-dateutil 2.8.2 pyhd3eb1b0_0 python-fastjsonschema 2.16.2 py310haa95532_0 python-json-logger 2.0.7 py310haa95532_0 python-lmdb 1.4.1 py310hd77b12b_0 python-lsp-black 1.2.1 py310haa95532_0 python-lsp-jsonrpc 1.0.0 pyhd3eb1b0_0 python-lsp-server 1.7.2 py310haa95532_0 python-slugify 5.0.2 pyhd3eb1b0_0 python-snappy 0.6.1 py310hd77b12b_0 python-tzdata 2023.3 pyhd3eb1b0_0 python_abi 3.10 2_cp310 conda-forge pytoolconfig 1.2.6 py310haa95532_0 pytz 2023.3.post1 py310haa95532_0 pyviz_comms 3.0.0 py310haa95532_0 pywavelets 1.5.0 py310h9128911_0 pywin32 305 py310h2bbff1b_0 pywin32-ctypes 0.2.0 py310haa95532_1000 pywinpty 2.0.10 py310h5da7b33_0 pyyaml 6.0.1 py310h2bbff1b_0 pyzmq 25.1.2 py310hd77b12b_0 qdarkstyle 3.0.2 pyhd3eb1b0_0 qstylizer 0.2.2 pypi_0 pypi qt-main 5.15.2 h19c9488_10 qt-webengine 5.15.9 h5bd16bc_7 qtawesome 1.2.2 pypi_0 pypi qtconsole 5.4.2 py310haa95532_0 qtpy 2.4.1 py310haa95532_0 queuelib 1.6.2 py310haa95532_0 re2 2022.04.01 hd77b12b_0 referencing 0.30.2 py310haa95532_0 regex 2023.10.3 py310h2bbff1b_0 requests 2.31.0 py310haa95532_1 requests-file 1.5.1 pyhd3eb1b0_0 rfc3339-validator 0.1.4 py310haa95532_0 rfc3986-validator 0.1.1 py310haa95532_0 rich 13.3.5 py310haa95532_0 rope 1.7.0 py310haa95532_0 rpds-py 0.10.6 py310h062c2fa_0 rtree 1.0.1 py310h2eaa2aa_0 s3fs 2023.10.0 py310haa95532_0 scikit-image 0.22.0 py310h25bd2df_0 scikit-learn 1.3.0 py310h4ed8f06_1 scipy 1.11.4 py310h309d312_0 scrapy 2.8.0 py310haa95532_0 seaborn 0.12.2 py310haa95532_0 send2trash 1.8.2 py310haa95532_0 service_identity 18.1.0 pyhd3eb1b0_1 setuptools 68.2.2 py310haa95532_0 shapely 2.0.1 py310h6c53999_0 sip 6.7.12 py310hd77b12b_0 six 1.16.0 pyhd3eb1b0_1 smart_open 5.2.1 py310haa95532_0 smmap 4.0.0 pyhd3eb1b0_0 snappy 1.1.10 h6c2663c_1 sniffio 1.3.0 py310haa95532_0 snowballstemmer 2.2.0 pyhd3eb1b0_0 sortedcontainers 2.4.0 pyhd3eb1b0_0 soupsieve 2.5 py310haa95532_0 sphinx 5.0.2 py310haa95532_0 sphinxcontrib-applehelp 1.0.2 pyhd3eb1b0_0 sphinxcontrib-devhelp 1.0.2 pyhd3eb1b0_0 sphinxcontrib-htmlhelp 2.0.0 pyhd3eb1b0_0 sphinxcontrib-jsmath 1.0.1 pyhd3eb1b0_0 sphinxcontrib-qthelp 1.0.3 pyhd3eb1b0_0 sphinxcontrib-serializinghtml 1.1.5 pyhd3eb1b0_0 spyder 5.4.3 py310haa95532_1 spyder-kernels 2.4.4 py310haa95532_0 sqlalchemy 2.0.25 py310h2bbff1b_0 sqlite 3.41.2 h2bbff1b_0 stack_data 0.2.0 pyhd3eb1b0_0 statsmodels 0.14.0 py310h9128911_0 streamlit 1.30.0 py310haa95532_0 sympy 1.12 py310haa95532_0 tabulate 0.9.0 py310haa95532_0 tbb 2021.8.0 h59b6b97_0 tblib 1.7.0 pyhd3eb1b0_0 tenacity 8.2.2 py310haa95532_0 terminado 0.17.1 py310haa95532_0 text-unidecode 1.3 pyhd3eb1b0_0 textdistance 4.2.1 pyhd3eb1b0_0 threadpoolctl 2.2.0 pyh0d69192_0 three-merge 0.1.1 pyhd3eb1b0_0 tifffile 2023.4.12 py310haa95532_0 tinycss2 1.2.1 py310haa95532_0 tk 8.6.12 h2bbff1b_0 tldextract 3.2.0 pyhd3eb1b0_0 toml 0.10.2 pyhd3eb1b0_0 tomli 2.0.1 py310haa95532_0 tomlkit 0.11.1 py310haa95532_0 toolz 0.12.0 py310haa95532_0 tornado 6.3.3 py310h2bbff1b_0 tqdm 4.65.0 py310h9909e9c_0 traitlets 5.7.1 py310haa95532_0 twisted 22.10.0 py310h2bbff1b_0 twisted-iocpsupport 1.0.2 py310h2bbff1b_0 typing-extensions 4.9.0 py310haa95532_1 typing_extensions 4.9.0 py310haa95532_1 tzdata 2023d h04d1e81_0 tzlocal 2.1 py310haa95532_1 uc-micro-py 1.0.1 py310haa95532_0 ujson 5.4.0 py310hd77b12b_0 unidecode 1.2.0 pyhd3eb1b0_0 urllib3 2.0.7 py310haa95532_0 utf8proc 2.6.1 h2bbff1b_1 validators 0.18.2 pyhd3eb1b0_0 vc 14.2 h21ff451_1 vs2015_runtime 14.27.29016 h5e58377_2 w3lib 1.21.0 pyhd3eb1b0_0 watchdog 2.1.6 py310haa95532_0 wcwidth 0.2.5 pyhd3eb1b0_0 webencodings 0.5.1 py310haa95532_1 websocket-client 0.58.0 py310haa95532_4 werkzeug 2.2.3 py310haa95532_0 whatthepatch 1.0.2 py310haa95532_0 wheel 0.41.2 py310haa95532_0 widgetsnbextension 3.5.2 py310haa95532_1 win_inet_pton 1.1.0 py310haa95532_0 winpty 0.4.3 4 wrapt 1.14.1 py310h2bbff1b_0 wrf-python 1.3.4.1 py310hf8fe482_2 conda-forge xarray 2023.6.0 py310haa95532_0 xlwings 0.29.1 py310haa95532_0 xyzservices 2022.9.0 py310haa95532_1 xz 5.4.5 h8cc25b3_0 yaml 0.2.5 he774522_0 yapf 0.31.0 pyhd3eb1b0_0 yarl 1.9.3 py310h2bbff1b_0 zeromq 4.3.5 hd77b12b_0 zfp 1.0.0 hd77b12b_0 zict 3.0.0 py310haa95532_0 zipp 3.17.0 py310haa95532_0 zlib 1.2.13 h8cc25b3_0 zlib-ng 2.0.7 h2bbff1b_0 zope 1.0 py310haa95532_1 zope.interface 5.4.0 py310h2bbff1b_0 zstd 1.5.5 hd43e919_0

Sorry for late replying. I checked your packages carefully and I don't see any problem. Prehaps u should downgrade your python to 3.10.9? My python version is 3.10.9 and it worked.

Thank you so much for your response! The problem has been solved though. It turns out that my wrf was a very old version v4.0.2 and after I reinstall it, the slp became normal.