Open lwillmeth opened 7 years ago
I think we should probably just force people to use either python 2 or 3 and go from there. Trying to support both will be a headache.
I haven't looked into the differences but I think you said kivy runs best on python 3? Should we just stick with that?
See ed76ee2a70a5fb9949a2a33c8fb8e52359def423
I agree about forcing python3. No reason to support old libraries if we are looking at maintaining this software into the future.
Going back to my desktop, I found a hiccup/issue with imports. I'm using this issue to report and learn about it.
Apparently, pip installs packages for python 2.x and we need to use pip3 to install packages for python 3.x.
That's not a deal breaker, but pip3 has to be installed separately, and it choked on my machine:
After fiddling with it I was able to get everything to work without using pip3, except the pymysql package, which I had to install using
sudo apt-get install python3-pymysql
Before we release this for others, we should nail down this installation process so that people can just run a command without needing to hunt down these libraries. I'm a big fan of using makefiles for this sort of thing, but I'm open to other ideas.