vs2017 python环境安装第三方包

一、在vs2017中也可以支持环境,智能提示什么都挺好,唯独这个安装第三放的类库,让人恶心至极,今天终于发现解决方法,进入正题

二、进入安装第三方包,我用python3.6环境,也是vs2017自带那个

打开进入安装python包

1、选择python3.6

2.下拉列表框选择:概述

3.点击 在PowerShell中打开

三、国内镜像网站

国内镜像

http://pypi.douban.com/simple/ 豆瓣
http://mirrors.aliyun.com/pypi/simple/ 阿里
http://pypi.hustunique.com/simple/ 华中理工大学
http://pypi.sdutlinux.org/simple/ 山东理工大学
http://pypi.mirrors.ustc.edu.cn/simple/ 中国科学技术大学
https://pypi.tuna.tsinghua.edu.cn/simple 清华

四、使用pip命令安装

pip  install --index https://pypi.mirrors.ustc.edu.cn/simple/ pandas

五、示例

Enter进入即可

原文地址:https://www.cnblogs.com/tuboshu/p/10752381.html