Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 374 Bytes

File metadata and controls

23 lines (12 loc) · 374 Bytes

School Portal

Initiate Virtual Environment with command:

  • python3 -m venv myenv

Start Envirnoment with command:

  • source myenv/bin/activate

Deactivate Environment with command:

  • Deactivate

Install packages in requirements.txt with command:

  • pip install -r requirements.txt

Start environment with command:

  • export FLASK_APP=run.py

  • flask run