Installation
Installation – How to Install & Run
Follow these steps to install and run the Aquiry Admin Template. You can use either Yarn depending on your preference.
Prerequisites – Tools & Environment :
- Node.js (v22 or higher) – runtime environment
- Yarn – package manager
- Webpack 5 – module bundler
Installation :
Step 1
Download the Package
Download the code from ThemeForest. The file will be in a.zip file format.
Step 2
Unzip the file
Extract the contents of the downloaded.zip file to a directory on your computer. It will extract in the Aquiry_v1.2.0 folder..
Step 3
Install Node.js and yarn (if not already installed)
Ensure Node.js and npm (Node Package Manager) are installed on your system. Make sure to use node version 22.*.
If Node.js is not installed, download and install it from the website. npm comes bundled with Node.js.
Step 4
Install Node Modules
Open your terminal or command prompt from the Aquiry_v1.2.0/Django/Admin folder.
yarn
Step 5
Build for Production
Generate optimized production filesyarn run build
Step 6
Outcome: If Python is installed, you will get a result with the version number, like this:
If you find that you do not have Python installed on your computer, else you can download it for free from the following website:https://www.python.org/
Command: To check if your system has PIP installed, run this command in the command prompt:
Outcome: If PIP is installed, you will get a result with the version number. For me, on a windows machine, the result looks like this:
Outcome: If you do not have PIP installed, you can download and install it from this page: https://pypi.org/project/pip/
Command(Windows): To create virtual environment, run this command in the command prompt:
Command(Unix/MacOS): To create virtual environment, run this command in the command prompt:
Command(Windows): Then you have to activate the environment, by typing this command:
Command(Unix/MacOS): Then you have to activate the environment, by typing this command:
Windows:
Unix/MacOS:
Command:To install flask and other packages, Navigate to 'Admin/' in the terminal and run this command in the command prompt:
Install Django
Prerequisite: EnsurePython and pip(Python Package Manager) are installed on your system. Make sure to use pip's latest version.
Virtual Env: Create and activate virtual env.
python --version
Outcome: If Python is installed, you will get a result with the version number, like this:
Python 3.14.2
If you find that you do not have Python installed on your computer, else you can download it for free from the following website:https://www.python.org/
Command: To check if your system has PIP installed, run this command in the command prompt:
pip --version
Outcome: If PIP is installed, you will get a result with the version number. For me, on a windows machine, the result looks like this:
pip 26.0 from C:\Program Files\Python313\Lib\site-packages\pip (python 3.13)
Outcome: If you do not have PIP installed, you can download and install it from this page: https://pypi.org/project/pip/
Command(Windows): To create virtual environment, run this command in the command prompt:
py -m venv virtual_env
Command(Unix/MacOS): To create virtual environment, run this command in the command prompt:
python -m venv virtual_env
Command(Windows): Then you have to activate the environment, by typing this command:
virtual_env\Scripts\activate.bat
Command(Unix/MacOS): Then you have to activate the environment, by typing this command:
source virtual_env/bin/activate
Windows:
(virtual_env) C:\Users\Your Name>
Unix/MacOS:
(virtual_env) ... $
Command:To install flask and other packages, Navigate to 'Admin/' in the terminal and run this command in the command prompt:
pip install -r requirements.txt
Step 6
Run Development Server
After the dependencies are installed, start flask server locally by running:py manage.py runserver
Open http://localhost:8000 in your browser.
Done