Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

poetry install

# Install Poetry Python Package manager (as of 2020-05)
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
Comment

install poetry

# python3
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3 -
# python2
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
Comment

poetry python install

# Install Poetry Python using this command the others are deprecated
curl -sSL https://install.python-poetry.org/ | python3
Comment

install poetry

curl -sSL https://install.python-poetry.org | python3 -
Comment

poetry python

# install
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3 -
# setup
poetry new <name> # new project
poetry init # existign project
poetry install
# requirements.txt
poetry add `cat requirements.txt`
poetry export --output requirements.txt
# venv
poetry run python your_script.py # single script
poetry shell # venv sub shell
# dependencies
poetry show --tree
poetry add <name>
poetry remove <name>
poetry update
# build and publish
poetry build
poetry config http-basic.pypi username password
poetry publish
Comment

poetry python download windows

#Windows
(Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py -UseBasicParsing).Content | python -
Comment

poetry install

#  On Windows PowerShell:
(Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py -UseBasicParsing).Content | python -
Comment

poetry installation phyton3

curl -sSL https://install.python-poetry.org | POETRY_HOME=/etc/poetry python3 -
Comment

poetry install packages

poetry install
Comment

python poetry

(Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py -UseBasicParsing).Content | python -
Comment

python poetry

(Invoke-WebRequest -Uri https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py -UseBasicParsing).Content | python -
Comment

poetry python

curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3 -
Comment

PREVIOUS NEXT
Code Example
Shell :: how to switch another branch in git 
Shell :: port kill masocs 
Shell :: kubernetes command line to scale down pods 
Shell :: how to make a shell in c for beginners 
Shell :: install spark on mac 
Shell :: install rollup locally 
Shell :: ubuntu Not Found The requested URL was not found on this server. Apache/2.4.41 (Ubuntu) Server at localhost Port 80 
Shell :: install kafka windows 
Shell :: git list stashes 
Shell :: ubuntu uninstall fonts 
Shell :: node js 16 install ubuntu 20.04 
Shell :: git stash apply undo merge conflict 
Shell :: powershell merge multiple text files 
Shell :: how to install pandoc 
Shell :: git go back a commit 
Shell :: unikey ubuntu 20.04 
Shell :: github add image readme 
Shell :: multiple kubeconfig in one file 
Shell :: ffprobe get duration 
Shell :: element function in terraform 
Shell :: nohup example 
Shell :: ImportError: No module named alsaaudio 
Shell :: graphviz windows install 
Shell :: Microsoft.PowerShell_profile.ps1 
Shell :: linux uninstall package 
Shell :: how to install deb file in kali linux 
Shell :: wsl2 file 
Shell :: history terminal commad getting limited 
Shell :: brew mac 
Shell :: how to change bash prompt color 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =