Send Beginners mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
http://www.haskell.org/mailman/listinfo/beginners
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Beginners digest..."
Today's Topics:
1. fresh install - cabal version confusion (Miroslav Karpis)
2. FW: fresh install - cabal version confusion (Miroslav Karpis)
3. Re: fresh install - cabal version confusion (Gil Mizrahi)
----------------------------------------------------------------------
Message: 1
Date: Tue, 23 Sep 2014 13:04:44 +0200
From: Miroslav Karpis <[email protected]>
To: <[email protected]>
Subject: [Haskell-beginners] fresh install - cabal version confusion
Message-ID: <d047206c.b79e%[email protected]>
Content-Type: text/plain; charset="iso-8859-1"
Hi, please can you help me with following? I?m having some issues with a
Haskell upgrade.
Before upgrade I have uninstalled Haskell, removed directory + removed .ghc
and .cabal files. After I install haskell and run cabal ?V I get the output
below. Confusing is the versions cabal returns: cabal-install version
1.18.0.5 using version 1.18.1.4? I have tried to run also cabal update, what
installed 1.20.0.3, but I still got the same output. What does it mean?
I?m running on Mac.
**********************************************************************
=== Configuration for cabal has been written to
/Users/miro/.cabal/config
=== Executables will be installed in:
/Users/miro/Library/Haskell/bin
You may wish to place this on your PATH by adding the following
line to your ~/.bash_profile:
export PATH="$HOME/Library/Haskell/bin:$PATH"
=== When documentation is built, a master index to all documentation
will be placed in:
/Users/miro/Library/Haskell/doc/index.html
You may wish to bookmark that file once it gets built (after the
first cabal install).
**********************************************************************
Downloading the latest package list from hackage.haskell.org
Note: there is a new version of cabal-install available.
To upgrade, run: cabal install cabal-install
cabal-install version 1.18.0.5
using version 1.18.1.4 of the Cabal library
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://www.haskell.org/pipermail/beginners/attachments/20140923/3a7474a9/attachment-0001.html>
------------------------------
Message: 2
Date: Tue, 23 Sep 2014 13:10:36 +0200
From: Miroslav Karpis <[email protected]>
To: <[email protected]>
Subject: [Haskell-beginners] FW: fresh install - cabal version
confusion
Message-ID: <d04720fe.b7a1%[email protected]>
Content-Type: text/plain; charset="iso-8859-1"
So I found out that cabal and cabal-install are 2 different modules ;-)
Would it be not cleaner with this:
> cabal-install version 1.18.0.5
> Cabal version 1.18.1.4
Instead of what we currently get?
> cabal-install version 1.18.0.5
> using version 1.18.1.4 of the Cabal library
Cheers Miro
From: Miroslav Karpis <[email protected]>
Date: Tuesday 23 September 2014 13:04
To: Haskell-Beginners Haskell <[email protected]>
Subject: fresh install - cabal version confusion
Hi, please can you help me with following? I?m having some issues with a
Haskell upgrade.
Before upgrade I have uninstalled Haskell, removed directory + removed .ghc
and .cabal files. After I install haskell and run cabal ?V I get the output
below. Confusing is the versions cabal returns: cabal-install version
1.18.0.5 using version 1.18.1.4? I have tried to run also cabal update, what
installed 1.20.0.3, but I still got the same output. What does it mean?
I?m running on Mac.
**********************************************************************
=== Configuration for cabal has been written to
/Users/miro/.cabal/config
=== Executables will be installed in:
/Users/miro/Library/Haskell/bin
You may wish to place this on your PATH by adding the following
line to your ~/.bash_profile:
export PATH="$HOME/Library/Haskell/bin:$PATH"
=== When documentation is built, a master index to all documentation
will be placed in:
/Users/miro/Library/Haskell/doc/index.html
You may wish to bookmark that file once it gets built (after the
first cabal install).
**********************************************************************
Downloading the latest package list from hackage.haskell.org
Note: there is a new version of cabal-install available.
To upgrade, run: cabal install cabal-install
cabal-install version 1.18.0.5
using version 1.18.1.4 of the Cabal library
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://www.haskell.org/pipermail/beginners/attachments/20140923/4abf9ec5/attachment-0001.html>
------------------------------
Message: 3
Date: Tue, 23 Sep 2014 14:13:45 +0300
From: Gil Mizrahi <[email protected]>
To: The Haskell-Beginners Mailing List - Discussion of primarily
beginner-level topics related to Haskell <[email protected]>
Subject: Re: [Haskell-beginners] fresh install - cabal version
confusion
Message-ID:
<cakaquqsjzxgr40xmpzuevs7udxrw30epqvjclcdkinjzcuq...@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"
Hi,
You probably want to add the path in which the new cabal was installed to
the $PATH variable in your ~/.bashrc or ~/.bash_profile file. So add the
following line:
export PATH="$HOME/Library/Haskell/bin:$PATH"
at the end of either ~/.bash_profile or ~/.bashrc and restart your terminal.
This will tell your shell where to find the new cabal you installed with
cabal install.
On Tue, Sep 23, 2014 at 2:04 PM, Miroslav Karpis <[email protected]>
wrote:
> Hi, please can you help me with following? I?m having some issues with a
> Haskell upgrade.
> Before upgrade I have uninstalled Haskell, removed directory + removed
> .ghc and .cabal files. After I install haskell and run cabal ?V I get the
> output below. Confusing is the versions cabal returns: *cabal-install
> version 1.18.0.5 using version 1.18.1.4*? I have tried to run also cabal
> update, what installed 1.20.0.3, but I still got the same output. What does
> it mean?
>
> I?m running on Mac.
>
>
> **********************************************************************
> === Configuration for cabal has been written to
> /Users/miro/.cabal/config
>
> === Executables will be installed in:
> /Users/miro/Library/Haskell/bin
>
> You may wish to place this on your PATH by adding the following
> line to your ~/.bash_profile:
>
> export PATH="$HOME/Library/Haskell/bin:$PATH"
>
> === When documentation is built, a master index to all documentation
> will be placed in:
>
> /Users/miro/Library/Haskell/doc/index.html
>
> You may wish to bookmark that file once it gets built (after the
> first cabal install).
>
> **********************************************************************
>
> Downloading the latest package list from hackage.haskell.org
> Note: there is a new version of cabal-install available.
> To upgrade, run: cabal install cabal-install
> cabal-install version 1.18.0.5
> using version 1.18.1.4 of the Cabal library
>
> _______________________________________________
> Beginners mailing list
> [email protected]
> http://www.haskell.org/mailman/listinfo/beginners
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
<http://www.haskell.org/pipermail/beginners/attachments/20140923/2e9d46d8/attachment-0001.html>
------------------------------
Subject: Digest Footer
_______________________________________________
Beginners mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/beginners
------------------------------
End of Beginners Digest, Vol 75, Issue 19
*****************************************