akazdayo / pixelart

Pixelart converter
https://pixelart.streamlit.app
Apache License 2.0
17 stars 3 forks source link

Error running app. If this keeps happening, please contact support. #14

Open Rabneba opened 5 days ago

Rabneba commented 5 days ago

Hi! Plz, run the app. Super need it right now... ) +rep

akazdayo commented 5 days ago

Hi, Rabneba. Thank you so much for use the my app. I'm sorry for the server down. I will look at the logs and see if I can find the cause.

akazdayo commented 5 days ago

if it happens again, you can do install the this app for your PC. It requires a little Python and shell command knowledge, can be done in the following way.

Using rye (Recommended)

rye can be downloaded here.

git clone https://github.com/akazdayo/pixelart.git
cd pixelart
rye sync
rye run streamlit run main.py

Using venv

Recommended python version is 3.10.14

git clone https://github.com/akazdayo/pixelart.git
cd pixelart
python -m venv .venv
# entry the venv (if you using linux and bash: $ source .venv/bin/activate)
pip install -r requirements.txt
streamlit run main.py