mirror of
https://github.com/meerk40t/meerk40t.git
synced 2025-02-27 20:30:12 +00:00
Add useful imports for running from source
This commit is contained in:
parent
deae45734b
commit
5a6b3449d7
2 changed files with 20 additions and 4 deletions
|
@ -1,7 +1,19 @@
|
|||
@echo ...
|
||||
@echo If this doesn't find pip or python then you need to get them from https://www.python.org/downloads/
|
||||
@echo ...
|
||||
@echo ...
|
||||
@echo off
|
||||
echo ...
|
||||
echo If this doesn't find pip or python then you need to get them from https://www.python.org/downloads/
|
||||
echo ...
|
||||
echo ...
|
||||
pip install -r requirements.txt
|
||||
SET choice=
|
||||
SET /p choice=Do you want to install optional (but helpful) packages (Y/N)? [N]:
|
||||
IF NOT '%choice%'=='' SET choice=%choice:~0,1%
|
||||
IF '%choice%'=='Y' GOTO yes
|
||||
IF '%choice%'=='y' GOTO yes
|
||||
:no
|
||||
echo Okay, skip these for now
|
||||
goto execute
|
||||
:yes
|
||||
pip install -r requirements-optional.txt
|
||||
:execute
|
||||
python meerk40t.py
|
||||
pause
|
4
requirements-optional.txt
Normal file
4
requirements-optional.txt
Normal file
|
@ -0,0 +1,4 @@
|
|||
potracer
|
||||
pypotrace-windows
|
||||
pyclipr
|
||||
meerk40t-barcodes
|
Loading…
Reference in a new issue