Set the PYTHONPATH
variable for module importing. To do this, you need to work in the command line.
$ cd nyc-green-taxi-map-visualization
$ export PYTHONPATH="$(pwd)"
$ pip install -U pip
$ pip install -r requirements_dev.txt
Make sure pip-tools
has already been installed. If you ran pip install -r requirements_dev.txt
, then pip-tools==1.11.0
should be installed.
NOTE: Never directly update requirements.txt
or requirements_dev.txt
.
Instead, use pip-compile
$ pip-compile requirements.in
$ pip-compile requirements_dev.in