OnSSET / onsset

The code of the Open Source Spatial Electrification Tool (OnSSET)
http://www.onsset.org
Other
25 stars 31 forks source link

Create an OnSSET environment #111

Closed NMoksnes closed 4 years ago

NMoksnes commented 4 years ago

Create an environment with all python packages needed as onsset so that the user don't have to download each one individually.

willu47 commented 4 years ago

You are able to pip install onsset to install onsset. However, this installs the code on your system as a package, so you don't have access to the code.

If you need to edit the code, you can still use pip to install it in editable more using pip -e onsset

NMoksnes commented 4 years ago

Ok. Great! So all the python packages that are needed to run onsset are in that installation?

willu47 commented 4 years ago

They should be, yes. When the tests run, this installation is also tested on Travis CI. If any of the dependencies break, then the tests will fail which gives us the signal to provide a fix.