https://github.com/Visoneers/Pinaka/releases
To get this project up and running you should start by having Python installed on your computer. It's advised you create a virtual environment to store your projects dependencies separately.
pip install virtualenv
Clone or download this repository and open it in your editor of choice. In a terminal (mac/linux) or windows terminal, run the following command in the base directory of this project
virtualenv venv
That will create a new folder env in your project directory. Next activate it with this command on windows:
venv/Scripts/activate
and on git:
source venv/Scripts/activate
if their is error like scripts is enable in this system then you need to follow the following steps
-
Open PowerShell (if you are running PowerShell on Windows Vista, right-click your PowerShell icon and select Run as administrator. If you don’t do this, you will not be able to enable script support).
-
Check the current script execution policy by using the
Get-ExecutionPolicycomand copy and paste in PowerSell and press Enter on your keyboard. PowerShell will return a value ofRestricted. -
To change the script execution policy, use the
Set-ExecutionPolicy unrestrictedcomand and press Enter on your keyboard. -
To ensure that the script execution policy has been changed, use the " Get-ExecutionPolicy " comand again. PowerShell should return a value of
Unrestricted.
Then install the project dependencies with All the required library are mentioned in https://github.com/Visoneers/Pinaka/releases We can use https://github.com/Visoneers/Pinaka/releases to install library using command
pip install -r https://github.com/Visoneers/Pinaka/releases
this will install all the library mentioned.
Now you can run the project with this command
python https://github.com/Visoneers/Pinaka/releases runserver
Note if you want payments to work you will need to enter your own Stripe API keys into the .env file in the settings files.