Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Hello world python with different package managers

lkkande-BB/python-all

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About this repo

This repo consists of python hello-world code with different python package manager

  • Native package manager - uses requirement.txt file for library dependencies
  • Pipenv package manager - uses Pipfile
  • Poetry package manager - uses pyproject.toml

Branches

Setup Instruction

Using native install with requirements.txt

  • pip install -r requirements.txt
  • python app.py

Using pipenv library with Pipfile

  • pip install pipenv
  • pipenv install
  • pipenv run python app.py

Using poetry library with pyproject.toml

  • pip install poetry
  • poetry install
  • poetry run python app.py

About

Hello world python with different package managers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 51.4%
  • Dockerfile 48.6%