Skip to content

wes-o/python3-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python3-template

python3-template

Status: Main

Commands to get started

  1. Clone this .git repository to local machine:
git clone https://github.com/wes-o/python3-template.git <template-name> && cd $_
  1. Checkout a branch currently in development.
git checkout --track origin/dev
  1. A good practice is to create, and activate a virtual environment:
python3 -m venv venv
source venv/Scripts/activate
  1. Change into directory location of 'python3-template'. Then, run:
pip install --trusted-host pypi.org setuptools==40.8.0

Specific version chosen based on documented version. See following link for more info. [https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/#fallback-behaviour]

  1. After package installation, try to install local module.
# first installation
pip install . 
# upgrade existing installation, for version update 
pip install --upgrade .

*Test it out locally. 🎵 🎵 *

python3 test.py