Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 276 Bytes

File metadata and controls

10 lines (9 loc) · 276 Bytes

fun_python

fun(..?) practice for python

Environment

  • Ubuntu 22.04 LTS
  • python3-venv
    • sudo apt install python3-venv
    • create venv: python3 -m venv {name_venv}
    • activate venv: cd {name_venv} && source bin/activate
    • deactivate venv: deactivate