摘要:
模式 描述 r 以读方式打开文件,可读取文件信息。 w 以写方式打开文件,可向文件写入信息。如文件存在,则清空该文件,再写入新内容 a 以追加模式打开文件(即一打开文件,文件指针自动移到文件末尾),如果文件不存在则创建 r+ 以读写方式打开文件,可对文件进行读和写操作。 w+ 消除文件内容,然后以读 阅读全文
摘要:
解决办法: pip install uwsgi I no cache dir It reinstalls ( I) as @leech said, but ignores the compiled cache ( no cache dir) and recompiles the thing with 阅读全文
摘要:
环境:ubuntu 16.04 安装 sudo apt install libmysqlclient dev sudo apt install mysql server sudo apt install mysql client 登录 mysql u root p 退出 quit 和 \q 显示本地 阅读全文