Python基础安装

Python安装

下载地址:http://www.python.org/download/releases/2.7.6/

安装完成后,在系统变量PATH中加入C:\Python27;

PyDev安装

help -> Maketplace -> find 'pydev' -> install

安装完成,配置一下Python Interpreters。

Preferences -> PyDev -> Interpreters -> Python Interpreter -> new 'C:\python27'

Pip安装

pip主要为了方便安装python模块。

先下载get-pip.py文件,下载地址:https://pip.pypa.io/en/stable/installing

进入cmd,运行命令:

python get-pip.py

之后会自动安装setuptools和wheel。

pip常规用法,

查看python已安装的库:

pip list

安装python库:

pip install beautifulsoup4

删除python库:

pip uninstall BeautifulSoup

查找python库:

pip search beautifulsoup

BeautifulSoup安装

简单来说,Beautiful Soup是python的一个库,最主要的功能是从网页抓取数据。

可以先用pip查找库:

pip search BeautifulSoup

敲入命令安装库:

pip install BeautifulSoup

你可能感兴趣的:(Python基础安装)