mirror of
https://github.com/drmext/MonkeyBusiness.git
synced 2024-11-23 22:51:03 +01:00
Disable portable venv hack
breaks when special characters are in path
This commit is contained in:
parent
c37b2e47be
commit
e8507d3e8f
23
start.bat
23
start.bat
@ -3,18 +3,19 @@
|
||||
cd /d %~dp0
|
||||
|
||||
if exist .venv\Lib\site-packages\ujson*.pyd (
|
||||
(
|
||||
goto :make_venv_portable
|
||||
:start_server
|
||||
.venv\Scripts\activate.bat && python pyeamu.py
|
||||
)
|
||||
(
|
||||
REM goto :make_venv_portable
|
||||
:start_server
|
||||
.venv\Scripts\activate.bat && python pyeamu.py
|
||||
)
|
||||
) else (
|
||||
(
|
||||
python -m venv .venv
|
||||
.venv\Scripts\activate.bat
|
||||
pip install -U -r requirements.txt
|
||||
python pyeamu.py
|
||||
)
|
||||
(
|
||||
:create_venv
|
||||
python -m venv .venv
|
||||
.venv\Scripts\activate.bat
|
||||
pip install -U -r requirements.txt
|
||||
python pyeamu.py
|
||||
)
|
||||
)
|
||||
|
||||
echo:
|
||||
|
Loading…
Reference in New Issue
Block a user