Installing ImageStore on Manjaro
Prerequisites
Before installing ImageStore, make sure you have the following:
- Manjaro installed
- Git installed
- Python 3.6 or higher
Installation
- Open the terminal on your Manjaro system.
- Clone the ImageStore repository by entering the following command:
git clone https://github.com/gregordr/ImageStore.git
- Change to the ImageStore directory by running:
cd ImageStore
- Install the required Python packages by running:
pip install -r requirements.txt
- Set up the database by running:
python manage.py migrate
- Create a superuser by running:
python manage.py createsuperuser
- Start the ImageStore server by running:
python manage.py runserver
Open your web browser and go to http://localhost:8000. You should see the ImageStore homepage.
To access the admin panel, go to http://localhost:8000/admin and log in with the superuser credentials you created in step 6.
Congratulations, you have successfully installed ImageStore on your Manjaro system!