Introduction and Installation
Introduction and Installation
Some Notable Features Shipped With Masonite
Requirements
Linux
$ sudo apt install python3-dev python3-pip libssl-dev build-essential python3-venv$ sudo apt-get install python3.7-dev python3-pip libssl-dev build-essential python3-venv# dnf install python-devel openssl-develInstallation
$ cd ~/programming
$ mkdir myapp
$ cd myappActivating Our Virtual Environment (optional)
$ python -m venv venv
$ source venv/bin/activate$ python -m venv venv
$ ./venv/Scripts/activateInstallation
$ pip install masonite$ project start .$ project install$ python craft serveLast updated