park-project / park

MIT License
218 stars 55 forks source link

Can't install the park package #18

Open xuruiyang opened 4 years ago

xuruiyang commented 4 years ago

I can't install the package through running: python setup.py install

would it be possible that you publish this project on PyPi, so that it can save us lots of time.

hongzimao commented 4 years ago

Good suggestion. We will do that.

In the meantime, the source code doesn't require installation. You can try creating a new python file in the same folder as setup.py and directly import park. Alternatively, you can add the path to park by doing

import sys
sys.path.append('path/to/your/local/park')
import park