Based on the Operating System of your PC, you can download and install Python's latest as well as older versions. Please find below instructions for the same based on your OS.
Download the windows installer for the python version you desire from Python Downloads
Double-click on the downloaded file and follow the instructions as requested.
Once completed, add python in the environment variables of your system settings to enable python compiling from your command line.
You can verify if the Python installation is successful either through the command line or through the IDLE app that gets installed along with the installation. Search for the command prompt and type “python”. You can see that Python "version" is successfully installed.
To check python version, run this command in your CMD or Terminal:
python --version
git clone https://github.com/ashishjoshi2605/ncsu-campus-jobs-review-system.git
cd ncsu-campus-jobs-review-system/
python -m venv venv
.\venv\Scripts\activate
pip install --upgrade pip
pip install -r requirements.txt
set FLASK_APP=crudapp.py
flask db init
flask db migrate -m "entries table"
flask db upgrade
flask run
MacOS comes with Python pre-installed. But it's Python Version 2.7, which is now deprecated (abandoned by the Python developer community).
To install the latest version of python in your mac, first you need to install Homebrew, a powerful package manager for Mac.
Open your terminal and run this command to install Homebrew in your system:
"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Your terminal will ask for admin.user access of your system. You will need to type your password to run this command. This is the same password you type when you log into your Mac. Type it and hit enter.
Once you are done with installing the Homebrew package, you can run this command in your terminal to install python with the desired version you want.
python version 3.6.5
Once done, you can run this command to check if you have successfully installed python in your system or its version:
python3 --version
To create/add new tables, run the following commands before starting the server:
flask shell
from app import db
db.create_all()
To delete all the tables, run following commands before starting the server:
flask shell
from app import db
db.drop_all()