This is the conference organiser for #RSEAA24. You can also have a look at RSEAA23 and RSEAA22 on the same website.
To begin, please follow the steps below for installing Python and setting up the virtual environment:
sudo apt install python3
Download the latest version of Python from the official website. Download Here
Follow the installation instructions provided, ensuring that Python is added to the system PATH.
Open the command prompt. Run the following command to install virtualenv:
pip install virtualenv
Open the command prompt in the desired project directory/folder. Create a new virtual environment by running the following command:
virtualenv .env
Run the following command to activate the virtual environment:
.\.env\Scripts\activate
Followed tahe instruction inside each Frontend and backend folders.
Open Terminal
pip install virtualenv
python3 -m venv venv
source venv/bin/activate
pip install fastapi sqlalchemy psycopg2-binary typing
pip install "python-jose[cryptography]"
pip install "passlib[bcrypt]"
pip install uvicorn[standard]
Make sure the virtual environment is activated.