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