Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

poetry python install

# Install Poetry Python using this command the others are deprecated
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

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 read input in bash 
Shell :: ETIMEDOUT Error while installing Node packages on Windows 
Shell :: get additional parameters linux scripting 
Shell :: install bootstrap in angular 
Shell :: readme folder structure 
Shell :: env variables list 
Shell :: make shortcut folder for wamp 
Shell :: how to install winehq in ubuntu?? 
Shell :: how to delete a folder from the terminal ubuntu 
Shell :: sudo rm rf hack 
Shell :: pip install pathlib 
Shell :: remove package from laravel 
Shell :: git undo merge 
Shell :: install vs code on fedora 
Shell :: how to run .sh script in mac 
Shell :: how to start mongodb server in ubuntu 
Shell :: how to install etcher on centos 7 
Shell :: install raylib osx 
Shell :: how to get deployment token from firebase 
Shell :: windows ssh-copy-id 
Shell :: delete file linux terminal 
Shell :: convertir a sudoers user centos 
Shell :: where is path on klai linux 
Shell :: how to branch from a branch in git 
Shell :: @mui/material npm 
Shell :: diff specific file git different branches 
Shell :: github add multiple credentials windows 
Shell :: terminal save txt to clipboard 
Shell :: install rclone FOR UBUNTU 
Shell :: generate crt and key openssl 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =