Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ACS
Public
Power System Simulation and Optimization
DPsim
DPsim
Commits
ba653315
Commit
ba653315
authored
Feb 19, 2020
by
Markus Mirz
Browse files
add install scripts
parent
ebeedc02
Changes
2
Hide whitespace changes
Inline
Side-by-side
Configs/install-fedora-deps.sh
0 → 100644
View file @
ba653315
dnf
-y
update
# Toolchain
dnf
-y
install
\
git clang gdb ccache
\
redhat-rpm-config
\
rpmdevtools
\
make cmake ninja-build
\
doxygen
\
graphviz
\
pandoc
\
python3-pip
\
pkg-config
# Dependencies
dnf
--refresh
-y
install
\
python3-devel
\
eigen3-devel
\
libxml2-devel
\
spdlog-devel
\
graphviz-devel
\
sundials-devel
\
gsl-devel
# VILLAS dependencies
sudo
dnf
install
\
openssl-devel
\
libuuid-devel
\
libconfig-devel
\
libnl3-devel
\
libcurl-devel
\
jansson-devel
\
libwebsockets-devel
\
mosquitto-devel
\
pip3
install
--user
-r
requirements.txt
pip3
install
--user
-r
requirements-jupyter.txt
dnf
-y
--refresh
install
npm
jupyter nbextension
enable
--py
widgetsnbextension
jupyter labextension
install
@jupyter-widgets/jupyterlab-manager
\ No newline at end of file
Configs/install-fein-deps.sh
0 → 100755
View file @
ba653315
cd
/tmp
&&
\
git clone
--recurse-submodules
https://github.com/CIM-IEC/libcimpp.git
&&
\
mkdir
-p
libcimpp/build
&&
cd
libcimpp/build
&&
\
cmake
-DCMAKE_INSTALL_LIBDIR
=
/usr/local/lib64
-DUSE_CIM_VERSION
=
IEC61970_16v29a ..
&&
make
-j
$(
nproc
)
install
&&
\
rm
-rf
/tmp/libcimpp
cd
/tmp
&&
\
git clone
--recurse-submodules
https://git.rwth-aachen.de/acs/public/villas/node.git
&&
\
mkdir
-p
villasnode/build
&&
cd
villasnode/build
&&
\
cmake
-DWITH_NODE_ETHERCAT
=
OFF
-DCMAKE_INSTALL_LIBDIR
=
/usr/local/lib64 ..
&&
make
-j
$(
nproc
)
install
&&
\
rm
-rf
/tmp/villasnode
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment