Python -- 安装路径 /usr/lib/python3/dist-packages 与 /usr/lib/python3/dist-packages 的区别

dist-packages

使用 apt-get install 等系统自带软件管理器安装 ,相关模块的安装路径为 /usr/lib/python3/dist-packages

使用 python3 setup.py install,相关模块的安装路径为 /usr/local/lib/python3.5/dist-packages/。这个路径放置的是 python 安装的第三方安装包。安装方式有 easy_install 和 pip

上面无论哪种方式,都必须使用系统自带的 python 进行安装

如何安装 easy_install:https://blog.csdn.net/weixin_38645718/article/details/106112070

参考文件:https://blog.csdn.net/cc1949/article/details/78286224

你可能感兴趣的:(#,Python,setup.py,install,dist-packages,python3,无需重新编译)