安装Pandas报错的就解决办法

问题:Python的3.10和3.11不稳定,有兼容性问题

用如下命令新建环境:


conda create -n mypython39 python=3.9

conda activate mypython39

pip install pandas jupyter notebook -i https://pypi.tuna.tsinghua.edu.cn/simple 

意思是,用python=3.9,就没有兼容问题

Leave a Comment