python安装第三方库要放在哪里
因为是用的python下的pip命令安装的,所以
你可以用pip list 查看你所安装的所有第三方库
然后你再使用pip show xxx(xxx为具体某一库的全称)就指定了具体这个库的下载路径在哪了
例:
pip install chromedriverpip list(也可不用,万一你记不住库的英文名字可以对照着敲)
pip show chromedriver
路径结果就出来了,我的是:
Name: chromedriverVersion: 2.24.1
Summary: Tool for downloading chromedriver
Home-page: UNKNOWN
Author: Maksym Shalenyi (enkidulan)
Author-email: supamaxy@gmail.com
License: apache2.0 (http://www.apache.org/licenses/LICENSE-2.0)
Location: d:python27libsite-packages
Requires:
这样就知道具体路径在哪里了。网,免费的网站,欢迎在线学习!
以上是 python安装第三方库要放在哪里 的全部内容, 来源链接: utcz.com/z/525022.html