Update the docs

This commit is contained in:
Veronica K. B. Olsen
2021-04-17 17:37:22 +02:00
parent 6763ebdd66
commit a14b319ada
3 changed files with 49 additions and 6 deletions
+7 -2
View File
@@ -6,13 +6,18 @@ echo Looking for Python
python --version 2>NUL
if errorlevel 1 goto errorNoPython
echo Python found. OK.
echo.
if exist setup.py (
echo setup.py found. OK.
) else (
goto errorNoSetup
cd ..
if exist setup.py (
echo setup.py found. OK.
) else (
goto errorNoSetup
)
)
echo.
:: Install the PyQt5, lxml and pyenchant dependencies
python setup.py pip
+9 -4
View File
@@ -10,16 +10,21 @@ echo Python found. OK.
if exist setup.py (
echo setup.py found. OK.
) else (
goto errorNoSetup
cd ..
if exist setup.py (
echo setup.py found. OK.
) else (
goto errorNoSetup
)
)
echo.
:: Remove the PyQt5, lxml and pyenchant dependencies
pip uninstall -r requirements.txt
:: Remove the desktop and start menu icons
python setup.py win-uninstall
:: Remove the PyQt5, lxml and pyenchant dependencies
pip uninstall -r requirements.txt
pause
goto:eof