amillb / pgMapMatch

map-matching of GPS traces
MIT License
75 stars 20 forks source link

import error #3

Closed ghost closed 6 years ago

ghost commented 6 years ago

import pgMapMatch Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'pgMapMatch'

amillb commented 6 years ago

It seems that you cloned pgMapMatch to a directory that is not in your Python path.

Try the following:

import sys
sys.path.append('your_directory')
import pgMapMatch