NSCC-COGS / Aestheta

An Industrial Think Tank Focused on Developing and Promoting AI Technology for Geospatial Applications [Please note this group was formed as an academic exercise for educational purposes and does not represent a real world organization]
MIT License
7 stars 3 forks source link

Make sure experiments and tutorials use new way of importing library #133

Open kkmcgg opened 3 years ago

kkmcgg commented 3 years ago

Our code used to import as such

!git clone https://github.com/NSCC-COGS/Aestheta.git
import Aestheta.Library.core as core

Now that the dev branch has been merged into main to support packaging our library, the new way of importing the library is as such:

!pip install git+https://github.com/NSCC-COGS/Aestheta.git
from aestheta import core

This new method ensures that any additional libraries required by our code (for example pyshape) are downloaded and installed as well.

Someone should take a peek at the existing experiments and tutorials and make a note of which need to be updated with the new method.