Skip to content

Latest commit

 

History

History
50 lines (29 loc) · 1.29 KB

File metadata and controls

50 lines (29 loc) · 1.29 KB

Python Shorts

Table of Contents

About

Short code examples made in python

Getting Started and Execute

Prerequisites

Python

You need to have python installed.

To find out which version was used for each project, just consult the .tool-versions file.

I used the asdf version manager.
🚀 https://asdf-vm.com/
🚀 https://github.com/asdf-vm/asdf

Python plugin for asdf version manager.
🚀 https://github.com/danhper/asdf-python

(back to top)

Installing

Configure Python Virtual Environment:

Python Virtual Environments: A Primer

You must install the required libraries for each project, if necessary.

For that, just:

pip install -r requirements.txt

(back to top)