## 运行项目
激活GPU 进入项目目录
(gpu) G:\GAN\wawa>python main.py --input_height 96 --input_width 96 --output_height 48 --output_width 48 --dataset anime --crop --train --eppoch 300 --input_fname_pattern "*.jpg"
报错
ImportError: No module named 'requests' 缺少库
安装库 : (gpu) G:\GAN\wawa>pip install requests -i https://pypi.douban.com/simple
ImportError: No module named 'tqdm' 缺少库
安装库 :(gpu) G:\GAN\wawa>pip install -i tqdm https://pypi.douban.com/simple
(gpu) G:\GAN\wawa>pip install tqdm -i https://pypi.mirrors.ustc.edu.cn/simple/
**正确写法 pip install 库名 -i 链接地址**
## mnist 转png
ImportError: No module named 'png'
[TOC]
G:\GAN\mnist\data\mnist>pip install pypng
Collecting pypng
mnist 或 fashion-mnist 数据集与png 图片的相互转化