1、PIP安装教程
pip
是 Python 官方推荐的包管理工具,适用于大多数 Python 库和模块的安装。
1)Windows上安装PIP
Python2的PIP安装脚本:https://bootstrap.pypa.io/get-pip.py
Python3的PIP安装脚本:https://bootstrap.pypa.io/3.3/get-pip.py
安装命令
python get-pip.py
2)Mac上安装PIP
Mac系统上一般都已经安装了Python和PIP。
如果要使用本机系统Python安装但没有可用的PIP,可以在终端中使用以下命令安装PIP:
sudo easy_install pip
使用Homebrew安装Python命令:
brew install python
如果安装成功但PIP不可用,则可能需要使用以下Terminal命令重新链接Python:
brew unlink python && brew link python
3)Linux上安装PIP
高级包工具(Python 2.x)
sudo apt-get install python-pip
高级包工具(Python 3.x)
sudo apt-get install python3-pip
pacman包管理器(Python 2.x)
sudo pacman -S python2-pip
pacman包管理器(Python 3.x)
sudo pacman -S python-pip
Yum包管理器 (Python 2.x)
sudo yum upgrade python-setuptools
sudo yum install python-pip python-wheel
Yum包管理器 (Python 3.x)
sudo yum install python3 python3-wheel
Dandified Yum (Python 2.x)
sudo dnf upgrade python-setuptools
sudo dnf install python-pip python-wheel
Dandified Yum (Python 3.x)
sudo dnf install python3 python3-wheel
Zypper包管理器 (Python 2.x)
sudo zypper install python-pip python-setuptools python-wheel
Zypper包管理器 (Python 3.x)
sudo zypper install python3-pip python3-setuptools python3-wheel
2、使用PIP安装命令
pip install 包名(库名)
例如:
pip install django
3、手动安装的方法
1)下载需要的包
下载地址:https://pypi.org
例如:下载PyUserInput(tar.gz格式)(下载地址:https://pypi.org/project/PyUserInput/#files)
2)解压软件包
3)使用命令安装
命令行工具cd切换到所要安装的包的目录,目录中包含setup.py文件,使用下面命令安装:
python setup.py install
注意:如果通过绝对路径或相对路径指定setup.py文件,执行安装命令可能报错,如下,
python ./PyUserInput-0.1.11/setup.py install
running install
running bdist_egg
running egg_info
creating PyUserInput.egg-info
writing requirements to PyUserInput.egg-info\requires.txt
writing top-level names to PyUserInput.egg-info\top_level.txt
writing PyUserInput.egg-info\PKG-INFO
writing dependency_links to PyUserInput.egg-info\dependency_links.txt
writing manifest file 'PyUserInput.egg-info\SOURCES.txt'
error: package directory '.\pykeyboard' does not exist