为了方便学习python 安装jupyter notebook,提供python网页编辑器

首先安装 pip工具
python 学习 之 pip安装jupyter notebook下载pip安装包
https://pypi.org/project/pip/#files
python 学习 之 pip安装jupyter notebook解压之后在当前目录打开cmd 执行python setup.py install安装pip
安装完成后屏幕会显示 安装的目录(忘记截图了。。 将就点)

然后在path中配置环境变量
python 学习 之 pip安装jupyter notebook

验证环境变量是否配置成功
python 学习 之 pip安装jupyter notebookok pip工具安装完成

接下来安装
jupyter notebook
一种网页版的python编辑。
命令行执行 pip install jupyter notebook
python 学习 之 pip安装jupyter notebook安装也还算快
不到一分钟

python 学习 之 pip安装jupyter notebook这个地方我等了好久
按了一下 ctrl+c 出现下面的 successfuly
python 学习 之 pip安装jupyter notebook然后命令行 运行 jupyter notebook
跳到home页面

python 学习 之 pip安装jupyter notebook这里选一下python 就可以编写python代码了
python 学习 之 pip安装jupyter notebook第一个python程序 hello world
python 学习 之 pip安装jupyter notebookjupyter notebook 导入其他module
导入 requests 包 命令行执行 pip install requests
导入 BeautifulSoup4 包 命令行 执行 pip install BeautifulSoup4

相关文章: