Haskell Platform 8.2.1 auf Kubuntu 17.04 installieren
-
Ich habe momentan auf Kubuntu 17.04 64 Haskell Platform 8.0.2 via apt-get installiert. Jetzt will ich auf Haskell Platform 8.2.1 upgraden.
Ich habe "
add-apt-repository ppa:hvr/ghc
" und "apt-get update
" gemacht. Muss ich jetzt "apt-get install ghc-8.2.1 cabal-install-2.0"
machen? Muss ich vorher Haskell Platform 8.0.2 deinstallieren?Meine .profile ist momentan
# ~/.profile: executed by the command interpreter for login shells. # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login # exists. # see /usr/share/doc/bash/examples/startup-files for examples. # the files are located in the bash-doc package. # the default umask is set in /etc/profile; for setting the umask # for ssh logins, install and configure the libpam-umask package. #umask 022 # if running bash if [ -n "$BASH_VERSION" ]; then # include .bashrc if it exists if [ -f "$HOME/.bashrc" ]; then . "$HOME/.bashrc" fi fi # set PATH so it includes user's private bin if it exists if [ -d "$HOME/bin" ] ; then PATH="$HOME/bin:$PATH" fi export PATH="$HOME/.cargo/bin:$PATH"
-
Ich mache das in Windows immer so: alte Plattform (komplett) runter, neue drauf.
-
Danke, aber was muss ich nach der Deinstallation von 8.0.2 und der Installation von 8.2.1 in die .profile eintragen? (Zitat aus #haskell: so you'll need to add /opt/ghc/8.2.1/bin and /opt/cabal/2.0/bin to your PATH)