摘要: 启动uwsgi时可能会报下面的错误[root@localhost ~]# uwsgi uwsgi: error while loading shared libraries: libicui18n.so.58: cannot open shared object file: No such file 阅读全文
posted @ 2022-05-12 11:18 starSgz 阅读(366) 评论(0) 推荐(0)
摘要: 创建虚拟环境命令 conda create -n name py版本 生成的虚拟环境一般在anaconda env路径下 删除虚拟环境:conda remove -n name --all 查看虚拟环境:conda info -e 切换虚拟环境:activate name 列出当前环境的所有包:co 阅读全文
posted @ 2022-05-11 17:17 starSgz 阅读(136) 评论(0) 推荐(0)