Mac macOS下安装Python第三方模块

pip工具

Window和macOS在安装Python3.4以后的版本会自动安装pip,在命令行中使用pip工具,Windows环境下使用命令"pip", 在OS X和Linux 环境下使用命令"pip3"。

以安装requests模块为例:

方法一:

  • step1:下载源码
    git clone git://github.com/requests/requests.git
    
  • step2: cd 到源码所在目录
    cd [your_source_path]\requests\
    
  • step3: 执行安装命令
    pip3 installl .
    

方法二:

pip3 install requests

你可能感兴趣的:(Mac macOS下安装Python第三方模块)