您现在的位置是:课程教程文章
安装anaconda后不能使用pip怎么办
2023-12-18 17:21课程教程文章 人已围观
-
微服务架构下利用Pipline测试及实战
微服务架构下利用Pipline测试及实战课程配套资料,可添加微信【18100802557】免费领取,备注:【腾讯课堂】。 想要... -
AutoPIPE Vessel (Microprotol)线上分享会
AutoPIPE Vessel (Microprotol)线上分享会AutoPIPE Vessel 压力容器及换热器设计出图一体化线上交流会 活动安排 日期:20... -
AutoPIPE Vessel (Microprotol)线上分享会
AutoPIPE Vessel (Microprotol)线上分享会AutoPIPE Vessel 压力容器及换热器设计出图一体化线上交流会 活动安排 日期:20... -
压力容器/Autopipe Vessel培训视频/GB150/ASME
压力容器/Autopipe Vessel培训视频/GB150/ASMEAutopipe Vessel 详细简介: AutoPIPE Vessel (Microprotol), 提供完全自动化的工作流(...
安装anaconda后不能使用pip的解决方法:打开anaconda prompt,在anaconda prompt中使用pip命令即可,例如:【pip install requests】。
问题描述:
(推荐教程:Python入门教程)
在windows系统下通过安装Anaconda的方式安装的python使用中发现不能通过pip安装python包,只能通过conda install packname 的方法,导致很多conda不支持的包无法安装。
解决方法:
打开Anaconde prompt,在该prompt中使用pip而不是命令行或者powershell中使用pip即可。
例如:
在Anaconde prompt 运行命令:
pip install requests
Requirement already satisfied: requests in e:\anaconda\lib\site-packages (2.21.0) Requirement already satisfied: chardet<3.1.0,>=3.0.2 in e:\anaconda\lib\site-packages (from requests) (3.0.4) Requirement already satisfied: certifi>=2017.4.17 in e:\anaconda\lib\site-packages (from requests) (2018.11.29) Requirement already satisfied: idna<2.9,>=2.5 in e:\anaconda\lib\site-packages (from requests) (2.8) Requirement already satisfied: urllib3<1.25,>=1.21.1 in e:\anaconda\lib\site-packages (from requests) (1.24.1)课程教程:安装anaconda后不能使用pip怎么办
下一篇:没有了