84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
这些path,其意图分别是? (见截图)
Windows7-Anaconda2-Python2.7.11
自己尝试理解(按序号来):
py标准库,方便导入(从zip导入)
win平台相关动态库
静态库?
win平台静态库?
tk库
anaconda主目录
py第三方包
sphinx目录
不知道
这个是?
又是win平台相关?
setuptools目录,干嘛的?
ringa_lee
我说一个吧,setuptools,这个是Python的包管理器。一般正常的Windows下的Python环境sys.path你看不到setuptools,Anaconda大概是自己额外安装了。
setuptools
Python
Windows
sys.path
Anaconda
包管理器嘛,就是跟Python的第三方库相关,我们都知道Python安装库有很多种方式,最常用的是pip和easy_install两个包管理器,其中easy_install就是基于setuptools的。
pip
easy_install
还有本地安装库的方式,就是在库目录下执行python setup.py install命令,我们随便打开一个setup.py文件,会发现包引入部分有这么一句:
python setup.py install
setup.py
from setuptools import find_packages, setup
我估计吧,Anaconda怕你本地没有setuptools环境(很多Linux版本的确没有自带setuptools),所以给你配了一个……
Linux
我说一个吧,
setuptools,这个是Python的包管理器。一般正常的
Windows下的Python环境sys.path你看不到setuptools,Anaconda大概是自己额外安装了。包管理器嘛,就是跟
Python的第三方库相关,我们都知道Python安装库有很多种方式,最常用的是pip和easy_install两个包管理器,其中easy_install就是基于setuptools的。还有本地安装库的方式,就是在库目录下执行
python setup.py install命令,我们随便打开一个setup.py文件,会发现包引入部分有这么一句:我估计吧,
Anaconda怕你本地没有setuptools环境(很多Linux版本的确没有自带setuptools),所以给你配了一个……