安装第三方库的方式
先按“win+R”并输入 cmd 打开命令运行窗口
输入命令: pip install 包名,比如要安装gym包就输入pip install gym
可能存在报错问题及解决办法
- 报错Could not fetch URL https://pypi.tuna.tsinghua.edu.cn/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.tuna.tsinghua.edu.cn', port=443): Max retries exceeded with url: /simple/pip/ (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.")) - skipping
参考原文解决方案:https://github.com/conda/conda/issues/8273
报错原因就是:conda找错了openssl的地址,conda在Anaconda\DLLs目录下寻找openssl的dll文件,但实际上需要的dll在Anaconda3\library\bin目录下。
解决方法:将Anaconda安装路径D:\Anaconda\Library\bin下的两个文件libssl-1_1-x64.dll和libcrypto-1_1-64.dll复制到D:\Anaconda\DLLs文件夹下面。
再次安装第三方库就成功了
查看当前环境下安装了那些第三方库:pip list
查看当前环境:conda env list,带星号的就是当前使用环境。