You can use conda to create new environment
(If you use your current environment you can skip 2 commands below)
conda create --name stegano python=3.6And you need to activate it
conda activate steganoAfter that you can install package below with file requirements we have prepared
pip install -r server/requirements.txtDownload npm and nodejs (https://nodejs.org/)
In the root directory of the project...
- Install node modules
yarn installornpm install. - Start development server
yarn startornpm start.