上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 20 下一页
  2018年5月13日
摘要: 解决办法: 将settings.py中的红色这一行注释 阅读全文
posted @ 2018-05-13 21:55 末 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 代码中红色字体部分均为Python3.0及以上版本在学到爬虫是需要注意的,如果没有这些红色的代码的话可能会出现以下情况: 1.TypeError: cannot use a string pattern on a bytes-like object 这种情况解决方法就是加上html=html.dec 阅读全文
posted @ 2018-05-13 15:25 末 阅读(18401) 评论(1) 推荐(1) 编辑
  2018年5月12日
摘要: 一、源码安装方法 下载源码包:https://www.djangoproject.com/download/ 输入以下命令并安装: 安装成功后 Django 位于 Python 安装目录的 site-packages 目录下。 二、创建 Django 项目 三、本机访问启动服务 以上信息说明,项目已 阅读全文
posted @ 2018-05-12 16:41 末 阅读(508) 评论(0) 推荐(0) 编辑
摘要: 默认方法启动django python manage.py runserver 这时启动的服务只能在本机访问,这是因为服务只向本机(127.0.0.1:8000)提供,所以局域网的其他机器不能访问。 如果想让网络上的其他计算机能够访问django的服务,需要更改启动django的命令为 python 阅读全文
posted @ 2018-05-12 16:31 末 阅读(7957) 评论(1) 推荐(1) 编辑
摘要: 环境:centos7.1 运行上面的命令开启容器时报错: /usr/bin/docker-current: Error response from daemon: error creating overlay mount to /var/lib/docker/overlay2/8c4e909f7bd 阅读全文
posted @ 2018-05-12 13:29 末 阅读(2772) 评论(0) 推荐(0) 编辑
摘要: centos7,执行完安装命令: yum install docker 执行启动命令: systemctl start docker ,报下面错误: Error starting daemon: SELinux is not supported with the overlay2 graph dri 阅读全文
posted @ 2018-05-12 11:12 末 阅读(868) 评论(0) 推荐(0) 编辑
  2018年5月10日
摘要: 一、安装Git 二、生成SSH密钥 连续按3个回车(密码默认为空),得到 id_rsa 和 id_rsa.pub 文件,在/root/.ssh 下说明生成成功 三、添加密钥到Github 打开 Github,登录自己的账号后点击自己的头像->settings->SSH And GPG Keys->N 阅读全文
posted @ 2018-05-10 22:45 末 阅读(336) 评论(0) 推荐(0) 编辑
摘要: git同步遇到报错“fatal: unable to access 'https://github.com/lizhong24/mysite2.git/': Peer reports incompatible or unsupported protocol version.” 解决办法: 问题解决了 阅读全文
posted @ 2018-05-10 21:30 末 阅读(6434) 评论(0) 推荐(1) 编辑
摘要: 在github上新建了一个仓库,然后相与本地的仓库联系起来 $ git remote add origin https://github.com/lizhong24/mysite2.git fatal: Not a git repository (or any of the parent direc 阅读全文
posted @ 2018-05-10 21:25 末 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 一、安装apache Apache是非常有名的web服务器软件,如果想让我们web项目运行几乎离不开它。 Apache官方网站:http://httpd.apache.org/ 根据自己的环境,选择相应的版本进行下载。apache 官网没有windows 64位版本,可以通过下面的链接进行下载:wi 阅读全文
posted @ 2018-05-10 15:51 末 阅读(910) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 20 下一页