Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

First step creating python project

// installing virtual environment 
python -m venv env
// activating virutal environment
source env/Scripts/activate
// installing django with latest version
pip install django
// or with specific version
pip install django==3.1
// to see install files and folders (optional)
pip freeze 
// creating project which is mainControl
django-admin startproject mainControl . 
// running the server ( 7000 for specific port ) 
python manage.py runserver 7000
// go to browser 127.0.0.1:7000
// go to EDITOR and proceed to second step
Comment

PREVIOUS NEXT
Code Example
Python :: how to move the element of an array in python by one step 
Python :: return variable python 
Python :: Python program to print all even numbers in a range 
Python :: pyhton apend to list 
Python :: how to round a number up in python 
Python :: python - How to subtract values from dictionaries 
Python :: swapping 
Python :: fillna with index 
Python :: np random list 
Python :: Fastest way to Convert Integers to Strings in Pandas DataFrame 
Python :: df iloc 
Python :: fill column based on values of another column 
Python :: django request.data example 
Python :: multiple logger instances populating single log python 
Python :: python standard normal cumulative distribution 
Python :: add row to dataframe 
Python :: basic flask api 
Python :: what is modulus in python 
Python :: python child class call parent method 
Python :: pypdf2 advanced tutorial 
Python :: python find minimum date in list 
Python :: keras name model 
Python :: python cartesian coordinates code 
Python :: reshape SAS matrix 
Python :: block content 
Python :: s.cookie.set python 
Python :: image processing python 
Python :: how to run python in the browser 
Python :: fun games 
Python :: Python Pandas - How to write in a specific column in an Excel Sheet 
ADD CONTENT
Topic
Content
Source link
Name
2+6 =