用python3写好代码后,如果代码用到第三方库,可用以下方法将第三方库导出和安装
你可以用pip导出你的dependency:
$ pip3 freeze > requirements.txt
然后在通过以下命令安装dependency:
$ pip3 install -r requirements.txt
用python3写好代码后,如果代码用到第三方库,可用以下方法将第三方库导出和安装
你可以用pip导出你的dependency:
$ pip3 freeze > requirements.txt
然后在通过以下命令安装dependency:
$ pip3 install -r requirements.txt
本文标题:python3依赖包导出及安装方法
本文链接:https://www.haomeiwen.com/subject/nvhyuxtx.html
网友评论