I have a computer where I have recently re-installed Ubuntu and all of volttron. The code (GUI) has been tested on another machine running Volttron and it works fine.
Here's the mystery part: I start Volttron (cd Volttron
, . env/bin/activate
, volttron -vv -l volttron.log&
) so that I am running in the environment. Then I use this line to compile my code so that I can run it:
./scripts/core/pack_install.sh examples/GUI examples/GUI/config agent.py
Normally (on my other machine) this spits out 8-10 lines of response and an agent ID that I can use to run the agent (typically use: volttron-ctl start --name GUI-0.1
).
On this new machine, I use that same exact compile line and instead, it spits out two lines following:
VOLTTRON_HOME UNSET setting to /home/sntvizlab/.volttron VOLTTRON_HOME=/home/sntvizlab/.volttron
2017-07-06 09:24:28,841 () volttron.platform.packaging ERROR: no last exception doesn't exist
Anyone have any ideas?
Things I have tried:
1. I have used sudo apt-get update
to make sure that all of the components are up to date.
2. I checked the log file using tail -f volttron.log
to see if there was anything useful in there. All there is are the start-up commands successfully completing.
3. I un-installed and re-installed Ubuntu 16.04.2 and subsequently re-installed Volttron and its components to see if it was a problem with my installation. There is no change in my initial problem.