Automatically create requirements.txt

前端 未结 7 1997
灰色年华
灰色年华 2020-11-27 09:07

Sometimes I download the python source code from github and don\'t know how to install all the dependencies. If there is no requirements.txt file I

7条回答
  •  半阙折子戏
    2020-11-27 09:31

    You can use the following code to generate a requirements.txt file:

    pip install pipreqs
    
    pipreqs /path/to/project
    

    more info related to pipreqs can be found here.

    Sometimes you come across pip freeze, but this saves all packages in the environment including those that you don't use in your current project.

提交回复
热议问题