SUMO installation with Ubuntu18.04 instead of Ubuntu20.04 #111
Unanswered
Dirkjoost
asked this question in
Installation issues
Replies: 1 comment
-
Thank you for the procedure for Ubuntu18.04. Normally the procedure to install "libpng12" solve the issue of "libgfortran3" on Ubuntu 20.04 as it is explained in the installation procedure. It is strange if it did not work for you, I manage to install it several time this way. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Installing Ceasiompy + Pytornado + SUMO did not work on Ubuntu20.04. I could not get it working (at least not the SUMO part). SUMO needs a downgrading of the g++ package and installing the libgfortran3, which I could not get done on ubuntu 20.04 due to incompatibility issues.
Therefore I downgraded the operating system to clean Ubuntu18.04 and get everything installed fine.
so to whomever is installing on Ubuntu, this is how I got it working on 18.04:
>> bash Miniconda3-latest-Linux-x86_64.sh
git clone https://github.com/cfsengineering/CEASIOMpy.git
>> sudo apt get install g++
>> conda env create -f environment.yml
alias ceasiompy='source activate ceasiompy && cd /yourPathToCEASIOMPy/CEASIOMpy/ceasiompy' alias ceasiomgui='cd /yourPathToCEASIOMPy/CEASIOMpy/ceasiompy/WorkflowCreator && python workflowcreator.py -gui'
>> ceasiompy
>> pip install -e .
>> cpacscreator
the CPACs creator program should open up
a. go to the folder pytornado-master and install pytornado through:
b.
>> pip install .
c. test by typing
>> pytornado
(you will get some help)>>sudo apt-get install libgfortran3
N.B. this will not work with ubuntu20.04 and the reason I downgraded to ubuntu18.04
>> sudo cp libpng12.so.0 /usr/lib/x86_64-linux-gnu/.
a. .download from https://www.larosterna.com/products/open-source
b. go to the directory sumo-2.7.9/bin/
c. open SUMO by
>> ./dwfsumo
d. now you can make an alias in the .bashrc file as before or type
>> sudo ln -s /YourPathToSUMO/sumo-standalone-Qt4-2.7.9/sumo-2.7.9/bin/dwfsumo /usr/bin/sumo
Beta Was this translation helpful? Give feedback.
All reactions