Name: | Hermes Simulator |
---|---|
Author: | Jos van 't Hof |
Version: | 0.1.3beta |
- Go to the Visual studio download page
- Scroll down and open the "Tools for Visual Studio 2019" drop down
- Download "Build Tools for Visual Studio 2019"
- Open executable and follow installation instructions
- Make sure to install the 'Windows 10 SDK', 'Visual C++ tools for CMake' and 'MSVC'
- Restart computer
- Clone the git repository
git clone https://github.com/Josvth/hermes-simulator.git
- While in the cloned directory type the following command
pip install hermes-simulator
Note
If you intend to modify/improve hermes-simulator I recommend installing using the '-e' (development mode) option
Installing Hermes is a bit tedious at the moment but the following squence of commands should make it all work.
Open the Anaconda terminal and make a new conda enviroment using:
conda create --name hermes_environment python=3.7
And activate it using:
conda activate hermes_environment
Then install as followed:
conda install vtk
conda install traits
pip install hermes-simulator
Then start python using:
python
And run the example by doing:
from hermes.examples import O3b_example
O3b_example()