Skip to main content

python

28th October, 2022

Updated: 28th October, 2022

Virtual Environments

  • Create virtual environment, you will only need to do this once. In the project folder run:
virtualenv venv
python3 -m venv instaloader
  • Activate the virtual environment
source venv/bin/activate
  • Install dependencies (This will only succeed if postgres binaries are installed)
pip install -r requirements.txt
  • run application
python runserver.py

6ef422d0-32de-411e-96e0-75dc99795163

Created on: 28th October, 2022

Last updated: 28th October, 2022