Python -- python setup.py install 和 pip install 之间的区别
程序员文章站
2022-05-07 13:44:04
...
两种方式:
python setup.py install
pip install <PACKAGE-NAME>
使用 pip 有一些额外的优势,pip 将自动下载包的所有依赖项。相反,如果使用的是 setup.py,则需要手动搜索和下载依赖项
参考:https://www.pythonheidong.com/blog/article/55807/
上一篇: java面试问什么
下一篇: Java游戏开发之俄罗斯方块的实例
推荐阅读
-
解决Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-install-f8IeEI/MYSQL-python/
-
win8安装python环境和pip、easy_install工具
-
Pycharm下载pyinstaller报错:You should consider upgrading via the 'python -m pip install --upgrade pip' command的解决方法
-
Pycharm下载pyinstaller报错:You should consider upgrading via the 'python -m pip install --upgrade pip' command的解决方法
-
centos6.7 安装python2.7、pip2.7、easy_install-2.7的方法
-
完美解决Python 2.7不能正常使用pip install的问题
-
Python-pip3 install turtle报错ERROR: Command errored out with exit status 和setup.py-except ValueErro
-
python2.7无法使用pip的解决方法(安装easy_install)
-
Python中的a+=b和a=a+b之间的区别是什么?
-
python3使用pip install mysqlclient失败的解决过程