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.6
And you need to activate it
conda activate stegano
After that you can install package below with file requirements we have prepared
pip install -r server/requirements.txt
Download npm and nodejs (https://nodejs.org/)
In the root directory of the project...
- Install node modules
yarn install
ornpm install
. - Start development server
yarn start
ornpm start
.