Skip to content

martyduniaud98/PythonFirstWebSite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Fist Simple Python Web Project

Simple python web project with mysql, html, css, js, bootstrap

Sommary

  1. Install python3 and other tools
    a. Windows
    b. Ubuntu
    c. MacOs
  2. Virtualenv (optional)
    a. Windows
    b. Ubuntu
    c. MacOs
  3. Download Docker image

Install python3 and other tools

Try python3 -v on terminal/powershell to check if python3 is installed on your system, if installed pass to the next step.


Virtualenv optional

This step is optional, you can skip if you don't want to use virtualenv. On Terminal/Powershell run the following commands to install virtualenv and create a virtual environment for the project

  • Windows
    pip install virtualenv
    cd PythonFirstWebSite
    virtualenv venv
    env\Scripts\activate
    
  • Ubuntu
    sudo apt install python3-venv
    cd PythonFirstWebSite
    python3 -m venv venv
    source venv/bin/activate
    
  • MacOs
    pip3 install virtualenv
    cd PythonFirstWebSite
    virtualenv venv
    source venv/bin/activate
    
    sudo apt install python3-venv
    cd PythonFirstWebSite
    python3 -m venv venv
    source venv/bin/activate
    
  • MacOs
    pip3 install virtualenv
    cd PythonFirstWebSite
    virtualenv venv
    source venv/bin/activate
    

Download Docker image

if you préfère use docker image, you can download it from [lien a mettre]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published