2020年3月27日

Anaconda 的使用

摘要: 使用 conda create -n your_env_name python=X.X(2.7、3.6等) anaconda 命令创建python版本为X.X、 名字为your_env_name的虚拟环境。your_env_name文件可以在Anaconda安装目录envs文件下找到。 activa 阅读全文

posted @ 2020-03-27 21:38 cltt 阅读(420) 评论(0) 推荐(0) 编辑

pip install module 下载慢解决方法

摘要: 例如: pip install keras==2.1.6 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com 其他的源 :-i https://pypi.tuna.tsinghua.edu.cn/simple 1.首先安装 阅读全文

posted @ 2020-03-27 21:14 cltt 阅读(432) 评论(0) 推荐(0) 编辑

OSError: image file is truncated (7 bytes not processed)

摘要: 添加2行代码即可 from PIL import ImageFile ImageFile.LOAD_TRUNCATED_IMAGES = True 阅读全文

posted @ 2020-03-27 11:13 cltt 阅读(742) 评论(0) 推荐(0) 编辑

导航