Re: [Tutor] Putting a Bow on It

2019-02-18 Thread Oscar Benjamin
On Mon, 11 Feb 2019 at 17:30, Alan Gauld via Tutor wrote: > > Three is a lot of work going on in Python land but no universal > solution. Some things work better on particular platforms. > And building library packages is easier than complete applications. I think this is the basic problem. There

Re: [Tutor] Putting a Bow on It

2019-02-18 Thread Chip Wachob
Oscar, Thanks for your full understanding of my situation. And putting it into better words than I did. The code that I've written is entirely Python. There are necessary libraries that go along with that, and, due to my inexperience, I am not 100% certain they are pure Python or not. Some of

Re: [Tutor] Putting a Bow on It

2019-02-18 Thread Alan Gauld via Tutor
On 18/02/2019 13:41, Chip Wachob wrote: > The code that I've written is entirely Python. There are necessary > libraries that go along with that, and, due to my inexperience, I am not > 100% certain they are pure Python or not. Some of the drivers from the IC > manufacturer (FTDI) are .dll files

Re: [Tutor] Putting a Bow on It

2019-02-18 Thread Oscar Benjamin
On Mon, 18 Feb 2019 at 13:41, Chip Wachob wrote: > > The code that I've written is entirely Python. There are necessary libraries > that go along with that, and, due to my inexperience, I am not 100% certain > they are pure Python or not. Some of the drivers from the IC manufacturer > (FTDI)

Re: [Tutor] Putting a Bow on It

2019-02-18 Thread Chip Wachob
Yes, the .dll files will have to be installed separately. So that's one step. I'd like to package the Python code together and have it all in one directory (which it currently is). Trying to limit human intervention (error) as much as possible. It does look like I'm going to have to have them p