<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[weixin_42919435的博客]]></title><description><![CDATA[]]></description><link>https://blog.csdn.net/weixin_42919435</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; weixin_42919435]]></copyright><item><title><![CDATA[MySQL 8.0安装教程——windows10-1]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/112891920</link><guid>https://blog.csdn.net/weixin_42919435/article/details/112891920</guid><author>weixin_42919435</author><pubDate>Thu, 21 Jan 2021 16:24:17 +0800</pubDate><description><![CDATA[下载MYSQL

官网地址：https://dev.mysql.com/downloads/mysql/



将下载的文件解压



配置初始化文件

可以看到，解压后的目录是没有my.ini文件的，我们来自行创建一个my.ini（新建文本文件，将文件类型改为的.ini，不会的可以去百度一下），写入以下配置：


[mysqld]
# 设置3306端口
port=3306
# 设置mysql的安装目录，这个可以自己更改
basedir=D:\mysql
# 设置mysql数据库的数据的存放目录，这个...]]></description><category></category></item><item><title><![CDATA[由于找不到vcruntime140_1.dll，无法继续执行代码，重新安装程序可能会解决此问题]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/112880992</link><guid>https://blog.csdn.net/weixin_42919435/article/details/112880992</guid><author>weixin_42919435</author><pubDate>Wed, 20 Jan 2021 15:44:27 +0800</pubDate><description><![CDATA[问题：安装mysql时报错：由于找不到vcruntime140_1.dll，无法继续执行代码，重新安装程序可能会解决此问题



解决:：这是因为缺少了动态链接库(.ddl文件)和mysql无关，下载一个，然后放到相应的位置就可以

注意：根据自己的电脑去下载64还是32的，下面以64为例，32位版本的vcruntime140_1.dll需复制到C:\Windows\SysWOW64下

下载地址：https://cn.dll-files.com/vcruntime140_1.dll.html



下载.]]></description><category></category></item><item><title><![CDATA[爬虫系列（七）抓包工具fiddler 安装以及配置]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/111401757</link><guid>https://blog.csdn.net/weixin_42919435/article/details/111401757</guid><author>weixin_42919435</author><pubDate>Sat, 19 Dec 2020 11:33:11 +0800</pubDate><description><![CDATA[一、fiddler抓包原理



Fiddler是以代理web服务器的形式工作的，它使用代理地址:127.0.0.1，端口:8888。当Fiddler退出的时候它会自动注销，这样就不会影响别的程序，但如果Fiddler非正常退出，这时候因为Fiddler没有自动注销，会造成网页无法访问。解决的办法是重新启动下Fiddler。

二、fiddler安装

下载

官网下载：https://www.telerik.com/download/fiddler



百度网盘：

链接：https://pan.ba.]]></description><category></category></item><item><title><![CDATA[爬虫系列（六）我们一起聊聊正则]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/111270877</link><guid>https://blog.csdn.net/weixin_42919435/article/details/111270877</guid><author>weixin_42919435</author><pubDate>Fri, 18 Dec 2020 14:55:00 +0800</pubDate><description><![CDATA[如果说网络爬虫爬取的网页信息是数据大海，正则表达式就是我们进行“大海捞针”的工具。

目录

正则表达达式

python 中的 re模块（处理正则表达式）

正则表达式元字符

正则表达式的转义

贪婪和非贪婪

正则表达式分组

re模块的使用

作业

12、match对象

13、flags 参数



正则表达达式

定义

正则表达式即文本的高级匹配模式，提供搜索、替代、获取等功能。本质是由一系列特殊符号和字符构成的字串，而这个字串就是正则表达式。

特点

（1）方便进行检索修改文本的操作
.]]></description><category></category></item><item><title><![CDATA[爬虫系列（五）学会urllib.request，玩转百度贴吧]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/111026218</link><guid>https://blog.csdn.net/weixin_42919435/article/details/111026218</guid><author>weixin_42919435</author><pubDate>Sun, 13 Dec 2020 15:50:05 +0800</pubDate><description><![CDATA[从今天开始，我们每天一个实战，一定要坚持住哦，不要做秒男啊啊啊，为什么这个字体是斜的，咱也不知道呀

爬虫系列

开篇语

学前准备

爬虫系列——你真的了解http吗？

我们一起爬

爬虫请求模块

版本介绍

Python2中：urllib2、urllib

Python3中：把urllib和urllib2并，urllib.request

也就是说在Python2版本中，有urllib和urlib2两个库可以用来实现request的发送。而在Python3中，已经不存在urllib2这个库了统一为u]]></description><category></category></item><item><title><![CDATA[爬虫系列（四）我们一起爬]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/110953443</link><guid>https://blog.csdn.net/weixin_42919435/article/details/110953443</guid><author>weixin_42919435</author><pubDate>Thu, 10 Dec 2020 15:13:47 +0800</pubDate><description><![CDATA[​今天我们的目标是要学会如何爬



目录

Python网络库

什么是requests模块

首页

功能

如何安装和使用requests模块

pip安装

使用anaconda安装

pycharm安装requests

实战，学以致用，开始爬

requests使用

实战

Python网络库

在实际浏览网页的时候，我们一般是通过鼠标来点击网页，由浏览器帮助我们发起请求，那在Python 爬虫中是如何发起请求的呢？Python有强大的库来作为支撑，给大家介绍一下，这些库：

Pyth...]]></description><category></category></item><item><title><![CDATA[在Ubuntu 18.04上安装不同版本的python及选择默认Python]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/109523985</link><guid>https://blog.csdn.net/weixin_42919435/article/details/109523985</guid><author>weixin_42919435</author><pubDate>Wed, 09 Dec 2020 09:15:00 +0800</pubDate><description><![CDATA[一、选择是从Deadsnakes PPA安装deb软件包
适用于Ubuntu 16.04和任何基于Ubuntu的发行版，包括Kubuntu，Linux Mint和Elementary OS
1、以具有sudo访问权限的用户身份运行以下命令，更新软件包列表并安装必备组件
sudo apt update
sudo apt install software-properties-common



02、运行以下命令，将deadsnakes PPA添加到系统的来源列表中：
sudo add-apt-reposit]]></description><category></category></item><item><title><![CDATA[Conda常用命令总结]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/106187662</link><guid>https://blog.csdn.net/weixin_42919435/article/details/106187662</guid><author>weixin_42919435</author><pubDate>Wed, 09 Dec 2020 09:05:10 +0800</pubDate><description><![CDATA[Conda环境常用变量
conda update -n base conda     #更新到最新版本的conda
conda create -n xxx python3.7  #创建名为python3.7的xxx虚拟环境
conda activate xxx             #进入xxx环境
conda deactivate xxx           #推出xxx环境
conda env list                 #查看所有虚拟环境
conda info --envs      ]]></description><category></category></item><item><title><![CDATA[爬虫系列（三）你真的了解http吗？]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/110822686</link><guid>https://blog.csdn.net/weixin_42919435/article/details/110822686</guid><author>weixin_42919435</author><pubDate>Mon, 07 Dec 2020 17:35:10 +0800</pubDate><description><![CDATA[上一篇推荐：爬虫系列 ——学前准备
前言
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;本文以一次HTTP请求的整个过程来带你深入了解http（注意：这里我们不讲DNS解析，也没必要，有兴趣的可以去自己了解一下）

一、http简介
1.简介
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;HTTP（HyperText Transfer Protocol）即超文本传输协议，是一种详细规定了浏览器和万维网服务器之]]></description><category></category></item><item><title><![CDATA[爬虫系列 （二）学前准备]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/110437491</link><guid>https://blog.csdn.net/weixin_42919435/article/details/110437491</guid><author>weixin_42919435</author><pubDate>Wed, 02 Dec 2020 17:56:56 +0800</pubDate><description><![CDATA[相信很多人，在学习一门技术时，首先想到的是难不难，自己能不能学会，那么今天我就告诉你，爬虫很难建议你趁早放弃（开个玩笑）。其实很简单，简单到1个小时你就可以写一个爬虫，分分钟就可以搞到你日思夜想的女神的照片，hhh]]></description><category></category></item><item><title><![CDATA[爬虫系列（一）开篇语]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/110437876</link><guid>https://blog.csdn.net/weixin_42919435/article/details/110437876</guid><author>weixin_42919435</author><pubDate>Tue, 01 Dec 2020 17:43:44 +0800</pubDate><description><![CDATA[在之前的公司主要是做一些数据的分析和网站开发的工作，说实话数据分析这块设计的方面很多，你要熟悉业务，要会采集数据，清洗数据等等。并不是所有的数据都是现成的，平时需要自己写一些爬虫，去获取一些数据，基于此开一个爬虫系列。]]></description><category></category></item><item><title><![CDATA[Windows 下 sublime text3的安装及设置]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/109651284</link><guid>https://blog.csdn.net/weixin_42919435/article/details/109651284</guid><author>weixin_42919435</author><pubDate>Tue, 01 Dec 2020 15:04:43 +0800</pubDate><description><![CDATA[前言：最近换了台电脑，只好上手安装一系列搬砖工具了
一、安装Sublime Text3
1、下载
官网下载：http://www.sublimetext.com/3

百度云：https://pan.baidu.com/s/1X6hD7AH-giyahkCK79ZKqw 提取码：e3ai
2、安装
Sublime Text安装很傻瓜，一路下一步即可
二、安装Package Control
Package Control是一个类似插件管理包的小工具，用起来非常方便
1、手动安装
&lt; 1 &gt; 点击P]]></description><category></category></item><item><title><![CDATA[python Django项目点击run或debug时出现Type ‘manage.py help ＜subcommand＞‘ for help on a specific subcommand.]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/103928597</link><guid>https://blog.csdn.net/weixin_42919435/article/details/103928597</guid><author>weixin_42919435</author><pubDate>Mon, 30 Nov 2020 18:47:58 +0800</pubDate><description><![CDATA[这篇文章是写GitHub的使用，总是有人问我问题以前都是被人问我什么就直接告诉他或者直接拿过来自己给他搞好
欢使用Markdown编辑器
你好！ 这是你第一次使用 Markdown编辑器 所展示的欢迎页。如果你想学习如何使用Markdown编辑器, 可以仔细阅读这篇文章，了解一下Markdown的基本语法知识。
新的改变
我们对Markdown编辑器进行了一些功能拓展与语法支持，除了标准的Mark...]]></description><category></category></item><item><title><![CDATA[Mysql 8.0以上版本，开启远程访问权限（ERROR 1064 (42000): You have an error in your SQL syntax； ）]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/109922987</link><guid>https://blog.csdn.net/weixin_42919435/article/details/109922987</guid><author>weixin_42919435</author><pubDate>Sun, 22 Nov 2020 11:10:34 +0800</pubDate><description><![CDATA[写在前面
MySQL开启远程访问权限，通常命令如下：
此处是为IP为192.168.0.104，用户名为root的用户，开启访问test1数据库的所有权限
rant all privileges on test1.* to "root"@"192.168.0.***" identified by
"root" with grant option;

报错

原因
版本问题，MySQL8.0以上版本并不适用这种命令来开启远程访问权限
解决方法
依次执行下面命令
create user 'root'@'192.]]></description><category></category></item><item><title><![CDATA[Ubuntu 找不到 Command ‘ifconfig‘ not found]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/109911369</link><guid>https://blog.csdn.net/weixin_42919435/article/details/109911369</guid><author>weixin_42919435</author><pubDate>Sat, 21 Nov 2020 23:19:06 +0800</pubDate><description><![CDATA[之前换了电脑，新安装了Ubuntu，发现ifconfig时，报错了

直接安装即可
sudo apt install net-tools


结果如下

或者你不想使用ifconfig，也可以使用ip link代替


]]></description><category></category></item><item><title><![CDATA[Ubuntu 下安装MySQL8.0及以上，未设置初始密码，无法登录MySQL的解决方法]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/109703597</link><guid>https://blog.csdn.net/weixin_42919435/article/details/109703597</guid><author>weixin_42919435</author><pubDate>Mon, 16 Nov 2020 15:50:48 +0800</pubDate><description><![CDATA[一、问题解决
标题报错提示
&nbsp;&nbsp;&nbsp;&nbsp;ERROR 1045 (28000): Access denied for user ‘root’@‘localhost’

MySQL版本

解决方法
&nbsp;&nbsp;&nbsp;&nbsp;1、进入到etc/mysql 目录下，使用命令sudo cat debian.cnf，查看debian.cnf文件，找到user和password

&nbsp;&nbsp;&nbsp;&nbsp;2、使用找到的用户名和密码登录MyS]]></description><category></category></item><item><title><![CDATA[Pycharm的安装和设置]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/106015029</link><guid>https://blog.csdn.net/weixin_42919435/article/details/106015029</guid><author>weixin_42919435</author><pubDate>Wed, 11 Nov 2020 10:05:13 +0800</pubDate><description><![CDATA[前言

这篇笔记主要讲pycharm的安装、设置和激活，将保持持续更新，建议收藏。如果有安装失败或无法激活问题，可以留言，笔者看到将最大程度给予帮助。本文仅用于学习，如有侵权请联系笔者，如转载请标明出处。

目录


1.安装
1.1下载软件
1.2
1.3


2.设置


3.激活


4.简单使用


正文

1.安装
——本文以Windows 10 专业版为例进行安装
1.1 下载软件
——下面截图软件：windows自带截图工具
1.1.1 官网下载：https://www.jetbrains.c]]></description><category></category></item><item><title><![CDATA[Ubuntu 18.0.4 安装sublime Text3，设置可以输入中文]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/109600177</link><guid>https://blog.csdn.net/weixin_42919435/article/details/109600177</guid><author>weixin_42919435</author><pubDate>Tue, 10 Nov 2020 15:56:05 +0800</pubDate><description><![CDATA[话不多说	，直接撸起来！
1、
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -


2、
sudo apt-get install apt-transport-https


3、
echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.l]]></description><category></category></item><item><title><![CDATA[VMware下安装Ubuntu linux系统]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/109508148</link><guid>https://blog.csdn.net/weixin_42919435/article/details/109508148</guid><author>weixin_42919435</author><pubDate>Fri, 06 Nov 2020 00:06:57 +0800</pubDate><description><![CDATA[一、下载软件
二、Ubuntu 安装
三、Mware Tools安装


















...]]></description><category></category></item><item><title><![CDATA[windows 10安装VMware Workstation]]></title><link>https://blog.csdn.net/weixin_42919435/article/details/90926627</link><guid>https://blog.csdn.net/weixin_42919435/article/details/90926627</guid><author>weixin_42919435</author><pubDate>Thu, 05 Nov 2020 10:54:54 +0800</pubDate><description><![CDATA[安装步骤
一、下载
&nbsp;&nbsp;&nbsp;&nbsp;1、官网下载：传送门

&nbsp;&nbsp;&nbsp;&nbsp;2、百度云链接：链接：https://pan.baidu.com/s/1n31av_stb4bRFiBGqw5xPw  提取码：rjho
二、安装
&nbsp;&nbsp;&nbsp;&nbsp;1、双击下载好的软件包，进行安装

&nbsp;&nbsp;&nbsp;&nbsp;2、点击接受许可协议

&nbsp;&nbsp;&nbsp;&nbsp;3、根据自己的电脑，]]></description><category></category></item></channel></rss>