“Criar automaticamente requisitos.txt” Respostas de código

Crie requisitos.txt python

pip list --format=freeze > requirements.txt
Lazy Leopard

Criar automaticamente requisitos.txt

pip3 freeze > requirements.txt  # Python3
pip freeze > requirements.txt  # Python2
LOL

Criar automaticamente requisitos.txt

pip3 freeze > requirements.txt
Funny Flatworm

Como ter o arquivo de requisitos em python para libs

pip3 freeze > requirements.txt
Cooperative Cowfish

gerar automaticamente requisitos.txt python

# You can use the following code to generate a requirements.txt file:
> pip install pipreqs
> pipreqs /path/to/project

# other popular way 
> pip freeze

# pip freeze saves all packages in the environment including those that
# you don't use in your current project. (so use wisely)
Darkstar

Respostas semelhantes a “Criar automaticamente requisitos.txt”

Perguntas semelhantes a “Criar automaticamente requisitos.txt”

Mais respostas relacionadas para “Criar automaticamente requisitos.txt” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código