Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

poetry requirements

# from same dir where the python file is located
python3 -m pipreqs.pipreqs --savepath=requirements.in

python3 -m piptools compile requirements.in

poetry init

#use this , this will read the package names and not the comments
poetry add $( cat requirements.txt| grep -v '#')

#or this
cat requirements.txt|grep -v '#'|xargs poetry add
Comment

PREVIOUS NEXT
Code Example
Shell :: github pages push 
Shell :: how to view the list of your environments in your terminal or Anaconda prompt 
Shell :: command to start a system service 
Shell :: bash ls sort by size 
Shell :: linux yaml validator command line 
Shell :: make vscode git mergetool 
Shell :: print first word of each line by grep 
Shell :: duplicate wsl distro 
Shell :: Gitlab docker runner registration 
Shell :: unittest run specific test 
Shell :: bash cut delimiter multiple spaces 
Shell :: copy files from windows to wsl2 ubuntu 
Shell :: linux os 
Shell :: write in a file linux 
Shell :: ubuntu essential commands 
Shell :: CMD-Digital Clook 
Shell :: aws cli parse secretstring 
Shell :: kubectl jq json pod name jsonpath 
Shell :: uninstall en_web_core md 
Shell :: falha ao instalar arquivo não há suporte ubuntu 
Shell :: ryu-manager install ubuntu 
Shell :: Display full date and time in history command 
Shell :: amend git description 
Shell :: snap install fingerprint 
Shell :: shell if "-z" 
Shell :: git setup upstream 
Shell :: prettier check 
Shell :: how to delete directory from /opt 
Shell :: neovim nvim plugins 
Shell :: command to install the fire-base tools 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =