Skip to content

How to run?

Suyash Soni edited this page Jan 24, 2018 · 1 revision
  1. Move to <project-dir>, create virtual environment and then activate it as
$ cd <project-dir>
$ virtualenv .environment
$ source .environment/bin/activate

Note: Step-1 is optional but recommended.

  1. Add project to PYTHONPATH as
$ export PYTHONPATH="$PYTHONPATH:." # . corresponds to current directory(project-dir)

If you are using PyCharm then it can be done under run configuration.

Clone this wiki locally