Commit 62cea37b by source_reader

changed pandas and sklearn to pip instead of apt

parent bb37458e
Showing with 7 additions and 1 deletions
......@@ -7,9 +7,15 @@ class common {
$pkgs=['build-essential','screen','emacs','openvpn',
'nmap','wget', 'sqlite3', 'gparted', 'net-tools',
'openssh-server','zlib1g-dev','chromium-browser',
'imagemagick', 'python3-sklearn', 'python3-pandas']
'imagemagick']
package { $pkgs:
ensure => present
}
$pip_pkgs = ['scipy', 'sklearn', 'pandas']
package { $pip_pkgs:
ensure => present,
provider => pip3
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment