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. Fw: [Haskell-beginners] Installing package hsc3 ? Haskell
      supercollider (Deb Midya)
   2. Re:  database question (Brandon S Allbery KF8NH)
   3. Re: Fw: [Haskell-beginners] Installing package hsc3 ? Haskell
      supercollider (Ozgur Akgun)
   4. Re: Fw: [Haskell-beginners] Installing package hsc3 ? Haskell
      supercollider (Deb Midya)
   5. Re: Fw: [Haskell-beginners] Installing package hsc3 ? Haskell
      supercollider (Antoine Latter)


----------------------------------------------------------------------

Message: 1
Date: Sun, 19 Sep 2010 16:33:44 -0700 (PDT)
From: Deb Midya <[email protected]>
Subject: Fw: [Haskell-beginners] Installing package hsc3 ? Haskell
        supercollider
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset="utf-8"


Hi Haskell Users, 
 
Thanks in advance.
 
At DOS prompt, I have typed: \ghc>cabal install hsc3
 
The following message appears:
 
Warning: The package list for 'hackage.haskell.org' does not exist. Run 'cabal 
update' to download it.
 
cabal: There is no package named hsc3. Perhaps you need to run 'cabal update' 
first?
 
At DOS prompt, I typed: \ghc> cabal update
 
The following message appears:
 
Downloading the latest package list from hackage.haskell.org
cabal: failed
 
Is there any solution for it please? 
 
What will be the procedure, if I download first and then install (Is there any 
set of commands here?)
 
Once again, thank you very much for the time you have given.
 
Regards,
 
Deb


--- On Fri, 17/9/10, Deb Midya <[email protected]> wrote:


From: Deb Midya <[email protected]>
Subject: [Haskell-beginners] Installing package hsc3 – Haskell supercollider
To: [email protected]
Received: Friday, 17 September, 2010, 2:14 PM







Hi Haskell Users, 
  
Thanks in advance. 
  
I am using Haskell on Windows XP. I have downloaded 
HaskellPlatform-2010.2.0.0-setup.exe and installed it. I have checked that GHCi 
version is 6.12.3. 
  
May I request you to assist me for the following please: 
  
To install Haskell supercollider package, I have downloaded hsc3-0.7.tar.gz. 
How can I install this package now? Is there any document (how to use) on this 
package? 
  
To assist me for this, I have also checked that whether cabal is working or 
not. To do that: 
  
At dos prompt: 
  
\ghc>cabal –help 
  
\ghc> cabal install –help 
  
It shows me flags for help and installation. 
  
Once again, thank you very much for the time you have given. 
  
Regards, 
  
Deb
 
 
-----Inline Attachment Follows-----


_______________________________________________
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/20100919/a034cf97/attachment-0001.html

------------------------------

Message: 2
Date: Sun, 19 Sep 2010 19:53:54 -0400
From: Brandon S Allbery KF8NH <[email protected]>
Subject: Re: [Haskell-beginners] database question
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset=UTF-8

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 9/18/10 16:30 , Gaius Hammond wrote:
> Oh, but I am already in the IO monad there aren't I.... And doQuery *isn't*
> but I have declared that it *should be* (e.g. an instance of typeclass
> MonadIO). Is that accurate?

You're in ReaderT at that point.  If you "lift" a monadic expression from
there, it will be run in WriterT.

Since IO must always be at the base(*) of any stack of monad transformers it
is used in, the MonadIO class provides a convenience function liftIO that
lifts its argument directly to the IO monad without having to step through
any intermediates.

_______
* we call it "lifting" but we also claim IO is at the base of the stack, and
I at least usually expect a base to be at the bottom.  Nice and confusing :)

- -- 
brandon s. allbery     [linux,solaris,freebsd,perl]      [email protected]
system administrator  [openafs,heimdal,too many hats]  [email protected]
electrical and computer engineering, carnegie mellon university      KF8NH
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.10 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkyWopIACgkQIn7hlCsL25VRAwCfSLR1M++NqB1wPFbI8LQoD1Lk
GS4Anitq5B3KDectcCF18HGDb5XqRxIo
=tBJU
-----END PGP SIGNATURE-----


------------------------------

Message: 3
Date: Mon, 20 Sep 2010 01:48:00 +0100
From: Ozgur Akgun <[email protected]>
Subject: Re: Fw: [Haskell-beginners] Installing package hsc3 ? Haskell
        supercollider
To: Deb Midya <[email protected]>
Cc: [email protected]
Message-ID:
        <[email protected]>
Content-Type: text/plain; charset="utf-8"

On 20 September 2010 00:33, Deb Midya <[email protected]> wrote:

> At DOS prompt, I typed: \ghc> cabal update
>
> The following message appears:
>
> Downloading the latest package list from hackage.haskell.org
> cabal: failed
>
> Is there any solution for it please?
>

To start with, you can run cabal update -v to get a more detailed output
about the cause of the failure.

Ozgur
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
http://www.haskell.org/pipermail/beginners/attachments/20100919/74aae9ec/attachment-0001.html

------------------------------

Message: 4
Date: Sun, 19 Sep 2010 18:42:02 -0700 (PDT)
From: Deb Midya <[email protected]>
Subject: Re: Fw: [Haskell-beginners] Installing package hsc3 ? Haskell
        supercollider
To: Ozgur Akgun <[email protected]>
Cc: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset="utf-8"

Ozgur,
 
Thanks for your reply.
 
I have tried with at ghc command prompt:
 
ghc>cabal update -v
 
But the the message remains the same as before:
 
Downloading the latest package list from hackage.haskell.org
cabal: failed

Is the any method to install manually? or if any.
 
Regards,
 
Deb

--- On Mon, 20/9/10, Ozgur Akgun <[email protected]> wrote:


From: Ozgur Akgun <[email protected]>
Subject: Re: Fw: [Haskell-beginners] Installing package hsc3 – Haskell 
supercollider
To: "Deb Midya" <[email protected]>
Cc: [email protected]
Received: Monday, 20 September, 2010, 10:48 AM







On 20 September 2010 00:33, Deb Midya <[email protected]> wrote:


At DOS prompt, I typed: \ghc> cabal update
 
The following message appears:
 
Downloading the latest package list from hackage.haskell.org
cabal: failed
 
Is there any solution for it please?

To start with, you can run cabal update -v to get a more detailed output 
about the cause of the failure.


Ozgur




      
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
http://www.haskell.org/pipermail/beginners/attachments/20100919/f7b52a40/attachment-0001.html

------------------------------

Message: 5
Date: Sun, 19 Sep 2010 20:45:04 -0500
From: Antoine Latter <[email protected]>
Subject: Re: Fw: [Haskell-beginners] Installing package hsc3 ? Haskell
        supercollider
To: Deb Midya <[email protected]>
Cc: [email protected]
Message-ID:
        <[email protected]>
Content-Type: text/plain; charset="utf-8"

Hi Deb,

You can always take the tar file you downloaded from Hackage, and then
unpack it and go into the directory you unpacked it into and type "cabal
install". It may be missin dependencies, and then you will also have to
download those from Hackage.

Antoine

On Sun, Sep 19, 2010 at 8:42 PM, Deb Midya <[email protected]> wrote:

> Ozgur,
>
> Thanks for your reply.
>
> I have tried with at ghc command prompt:
>
> ghc>cabal update -v
>
> But the the message remains the same as before:
>
> Downloading the latest package list from hackage.haskell.org
> cabal: failed
> Is the any method to install manually? or if any.
>
> Regards,
>
> Deb
>
> --- On *Mon, 20/9/10, Ozgur Akgun <[email protected]>* wrote:
>
>
> From: Ozgur Akgun <[email protected]>
> Subject: Re: Fw: [Haskell-beginners] Installing package hsc3 – Haskell
> supercollider
> To: "Deb Midya" <[email protected]>
> Cc: [email protected]
> Received: Monday, 20 September, 2010, 10:48 AM
>
>
>
>  On 20 September 2010 00:33, Deb Midya 
> <[email protected]<http://au.mc543.mail.yahoo.com/mc/[email protected]>
> > wrote:
>
> At DOS prompt, I typed: \ghc> cabal update
>
> The following message appears:
>
> Downloading the latest package list from hackage.haskell.org
> cabal: failed
>
> Is there any solution for it please?
>
>
> To start with, you can run cabal update -v to get a more detailed output
> about the cause of the failure.
>
> Ozgur
>
>
>
> _______________________________________________
> 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/20100919/a9360b99/attachment.html

------------------------------

_______________________________________________
Beginners mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/beginners


End of Beginners Digest, Vol 27, Issue 45
*****************************************

Reply via email to