Skip to content

Latest commit

 

History

History
43 lines (36 loc) · 1.4 KB

README.md

File metadata and controls

43 lines (36 loc) · 1.4 KB

1. Reference

2. installation

2.1. install with this folder

Open a command ternimal, and then switch to the project directory(where setup.py is). Then use the command below to install

pip install mypackage

2.2. Install with wheel file

2.2.1. build the wheel file

py -m build

then it will create a folder dist and a folder mypackage.egg-info

  • there are *.tar.gz and *.whl in the folder dist

2.2.2. install the wheel file

pip install wheel_name.whl

3. Usage

There is a demo:

  • test.py in this folder