-
Download Anaconda and install the software into your machine.
-
Run Anaconda Navigator. The application looks like this:
- Click on Environments, then click Create to create a new environment.
- Give it a name for your environment and choose Python 3.6. Then click Create
Note: If you do not have the option python 3.6. Just type conda install python=3.6
in the terminal before step 6.
- Click on the environment that you just made. In this case, my new environment is simba-test. Then select
Open Terminal
- In the terminal, type
pip install simba-uw-tf
- Once it is installed, uninstall shapely, it will then prompt
Proceed([y]/[n])?
, typey
.
pip uninstall shapely
- Then reinstall using the following command, it will then prompt
Proceed([y]/[n])?
, typey
.
conda install -c conda-forge shapely
- Type
simba
in the terminal to check if it works.