5 minute test project by lapisangularis
Application works fine on the newest Windows, MacOSX and linux distributions.
Double click on the executable.
Write your value in the first field. Pick your conversion method from available buttons. Click the reset button for the default value and conversion (1kg to lb). Converted value will appear in the second field.
python 3.7.3
pip 20.1.1
If you meet the Requirements
, you can develop this codebase, just need to setup the environment.
Instructions to do in commandline or terminal:
- Go to main folder of the project
- Windows
cd c:\path\to\project
- MacOSX and Linux
cd /path/to/project
- Create new virtualenv
python3 -m venv venv
- Activate virtualenv
- Windows
call venv/scripts/activate.bat
- MacOSX and Linux
source venv/bin/activate
- Install packages with
pip
pip install -r requirements.txt
For running the app, type:
fbs run
For creating executable, after Setting up project
part, you just need to type.
fbs freeze
In project folder there will be target
folder with executable inside. (.exe
for Windows, .app
for MacOSX, binary for Linux)