Download and install python customize;
https://www.python.org/downloads/windows/
Check python version
python -V
Select system C folder, then select program files. It's Done, well!
Next step, do search by typing advanced system, select Environment Variables to setting PATH
Download and install visual studio code:
https://code.visualstudio.com/
Download and install Git:
If your computer is MacOs, do install:
or copy this and paste in your terminal:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Then, visit:
https://git-scm.com/download/mac
Detail: https://kinsta.com/knowledgebase/install-git/
Install or check pip.
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
Check pip version
pip --version
Install pip on MacOs:
https://phoenixnap.com/kb/install-pip-mac
or
https://www.groovypost.com/howto/install-pip-on-a-mac/
The other hand, do the following in terminal (command prompt) or gitbash:
Check python version
python -V
or
python --version
Check pip version
pip --version
Up one step folder:
cd ..
Check the list files and folders:
ls
GitCheatSheet: Here
Register/ sign in the github
Install XAMPP
https://www.apachefriends.org/index.html
Open Visual Studio Code via gitbash/command prompt:
Code .
Configure your local Git installation to use your GitHub credentials by entering the following:
git config --global user.name "github_username"
git config --global user.email "email_address"
Note: Replace github_username and email_address with your GitHub credentials.
List of the files to ignore push on github: https://gitignore.io/
pip:
https://python.land/virtual-environments/installing-packages-with-pip#Python_Install_Pip
https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/
https://docs.python-guide.org/starting/install3/win/#install3-windows
https://docs.python-guide.org/dev/virtualenvs/#virtualenvironments-ref
Git Ebook:
https://git-scm.com/book/en/v2
Official VS Code using Flask-python: https://code.visualstudio.com/docs/python/tutorial-flask
XAMPP stands for eXtremely Accelerated Multi-Processing Packet Processing (A) Apache server, (M) MariaDB, (P) PHP, and (P) Perl. X stands for Cross-platform, (A) Apache server, (M) MariaDB, (P) PHP, and (P) Perl. The term “cross-platform” typically refers to the ability to run on any device, regardless of operating system.
Download and Install the XAMPP, then if you have finished successfully, activate(start) Appache and MySQL, respectively:
Click this link: https://localhost/dashboard/ then choose phpMyAdmin
then
Create the database:
CREATE DATABASE `db_sample`;
Create the table:
CREATE TABLE `db_sample`.`users` (
`UID` int(11) NOT NULL AUTO_INCREMENT,
`UNAME` varchar(50) NOT NULL,
`EMAIL` varchar(50) NOT NULL,
`UPASS` varchar(50) NOT NULL,
PRIMARY KEY (`UID`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
Install or check pip.
Support link: here
PIP manual install tutorial: Here
Follow the steps outlined below to install PIP on Windows.
Before installing PIP, download the get-pip.py file.
1. Launch a command prompt if it isn't already open. To do so, open the Windows search bar, type cmd and click on the icon.
2. Then, run the following command to download the get-pip.py file:
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
To install PIP type in the following:
python get-pip.py
If the file isn’t found, double-check the path to the folder where you saved the file. You can view the contents of your current directory using the following command:
dir
The dir command returns a full listing of the contents of a directory.
Once you’ve installed PIP, you can test whether the installation has been successful by typing the following:
pip help
If PIP has been installed, the program runs, and you should see the location of the software package and a list of commands you can use with pip.