1
Posted by julian •
deactivate
aqora clean
aqora install
aqora test
and aqora upload
without activating the environmentaqora info
? Thank you in advance!2
Posted by julian •
2
Posted by julian •
1
Posted by julian •
aqora --version
? It might help to upgrade to the latest version 0.11.0 https://pypi.org/project/aqora-cli/. But if that doesn't work we can investigate it more together!2
Posted by julian •
aqora --python 3.12 template h2-groundstate-energy
or if you want to reinstall in the directory you've already downloaded the template to, you can run aqora clean
to remove the old installation and then aqora install --python 3.12
in that directory3
Posted by julian • (edited)
plt.show
is fine on our backend. If you want to keep using it in the notebook but not have it block aqora test
, you can add plt.ion()
to your notebook or use plt.show(blocking = False)
. As far as synthesize
is concerned the issue is related to starting an event loop in the current event loop. We can probably use a separate process to prevent the error, but I'm looking into it now and I will get back to you.1
Posted by julian •
use_case.obstacles
. You then need to calculate the shortest path and return a list of points along that path starting with the start point and ending with the end point without intersecting the polygons2
Posted by julian •
aqora test
for convenience, but for right now, the easiest thing to do I guess is just to comment out plt.show()
or similar before running aqora test