- python3.9
- For setup instructions: https://www.liquidweb.com/kb/how-to-setup-a-python-virtual-environment-on-windows-10/
- virtualenv (
pip install virtualenv- if you do not have it installed)
- Clone repository.
cd DBMS-multi-cloud- Setup your virtualenv
virtualenv env --python=python3.9
- Activate virtualenv
- windows:
\env\bin\activate.bat - other:
source env/bin/activateThis step is very important. This sets up your session in a virtual environment. You must activate virtualenv everytime you start working. This will help in maintaining and syncing any external libraries dependency of our project with other team members.
- windows:
- Install dependencies.
pip install -r requirements.txt
- All code must be placed under
srcdirectory.