美文网首页
1.初识少儿编程之turtle库的使用

1.初识少儿编程之turtle库的使用

作者: 为啥要创业 | 来源:发表于2018-07-30 16:27 被阅读0次

如何查看Python 安装位置以及已经安装的库

如何查看Python 安装位置以及已经安装的库

步骤一:
1. Start 一个command prompt
2. 找到电脑中已经安装的Python 位置:

where python

打开路径, cd 到输出的路径,之后

start.

显示pip安装的所有库

pip list <or> pip freeze

查看过时的库

pip list --outdated

步骤二:
如果是从python 的command line 里面查看,可以使用如下命令(python 3.x)

import sys
print(sys.path)

python 标准库位置: %python安装路径%\Lib

Example: C:\Users\ref3oz\AppData\Local\Programs\Python\Python35\Lib

第三方库位置: %python安装路径%\Lib\site-packages

Example: C:\Users\ref3oz\AppData\Local\Programs\Python\Python35\Lib\site-packages

相关文章

网友评论

      本文标题:1.初识少儿编程之turtle库的使用

      本文链接:https://www.haomeiwen.com/subject/xvvfvftx.html