Re: [racket-users] inadvertently upgraded Racket version. Would like to make an older installed version current.

2021-04-13 Thread 'John Clements' via Racket Users
Did you install racket using a package manager, perhaps from the racket PPA? 
(I’m guessing the answer is yes, since this seems like the most likely 
situation to have caused an unintentional upgrade.)

If so, I think you should generally get the right behavior from using that same 
package manager to reinstall the earlier version, and “pin” it using whatever 
mechanism your package manager provides.

If you have code that’s not a part of a package installed by raco pkg (or 
installed with the —link option), I can imagine needing to recompile some 
sources using raco setup.

I suppose I should first have asked this question: what’s your reason for 
installing the earlier version? I ask because if the issue is CS/BC, you should 
be aware that there is a BC version of 8.0 available.

Finally, let me apologize in advance if anything I’m telling you is partly or 
completely mistaken!

John

> On Apr 13, 2021, at 12:55 PM, infodeveloperdon  
> wrote:
> 
> Hi, I'm using linux Ubuntu.
> Don
> 
> On Tuesday, April 13, 2021 at 1:02:33 PM UTC-6 johnbclements wrote:
> raco pkg remove is definitely not what you want. 
> 
> In general, I know there are languages (ocaml, haskell, rust) that put their 
> package managers “outside” of the currently installed version, so it might 
> make sense that a package manager command could be used to change to an 
> earlier version of the language.  
> 
> In Racket, by contrast, the package manager is part of the installation, on 
> the “inside”. 
> 
> However, you can certainly have multiple versions of Racket installed at the 
> same time. 
> 
> The details of which one is “active”, and what that word even means, is 
> highly dependent on what operating system you’re using. 
> 
> What operating system are you using? 
> 
> John Clements 
> 
> > On Apr 13, 2021, at 11:29, infodeveloperdon  wrote: 
> > 
> > I inadvertently upgraded Racket version. Would like to make an older 
> > installed version current. 
> > So now when I start DrRacket v8 is current. 
> > Is there a command that makes a specified version current? 
> > Does 
> > raco pkg remove  
> > effectively make the previous version current? 
> > Thanks. Don. 
> > 
> > -- 
> > You received this message because you are subscribed to the Google Groups 
> > "Racket Users" group. 
> > To unsubscribe from this group and stop receiving emails from it, send an 
> > email to racket-users...@googlegroups.com. 
> > To view this discussion on the web visit 
> > https://groups.google.com/d/msgid/racket-users/a7577cff-a448-4e44-91b0-6d9d9e4557c5n%40googlegroups.com.
> >  
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to racket-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/racket-users/729e46a6-9c39-4d56-b1d4-2d6a11e5d25en%40googlegroups.com.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/bf17a551-cd79-4b2b-940a-a8189825a8ac%40mtasv.net.


Re: [racket-users] inadvertently upgraded Racket version. Would like to make an older installed version current.

2021-04-13 Thread infodeveloperdon
Hi, I'm using linux Ubuntu.
Don

On Tuesday, April 13, 2021 at 1:02:33 PM UTC-6 johnbclements wrote:

> raco pkg remove is definitely not what you want.
>
> In general, I know there are languages (ocaml, haskell, rust) that put 
> their package managers “outside” of the currently installed version, so it 
> might make sense that a package manager command could be used to change to 
> an earlier version of the language. 
>
> In Racket, by contrast, the package manager is part of the installation, 
> on the “inside”.
>
> However, you can certainly have multiple versions of Racket installed at 
> the same time.
>
> The details of which one is “active”, and what that word even means, is 
> highly dependent on what operating system you’re using. 
>
> What operating system are you using?
>
> John Clements
>
> > On Apr 13, 2021, at 11:29, infodeveloperdon  
> wrote:
> > 
> > I inadvertently upgraded Racket version. Would like to make an older 
> installed version current.
> > So now when I start DrRacket v8 is current.
> > Is there a command that makes a specified version current?
> > Does 
> > raco pkg remove 
> > effectively make the previous version current?
> > Thanks. Don.
> > 
> > -- 
> > You received this message because you are subscribed to the Google 
> Groups "Racket Users" group.
> > To unsubscribe from this group and stop receiving emails from it, send 
> an email to racket-users...@googlegroups.com.
> > To view this discussion on the web visit 
> https://groups.google.com/d/msgid/racket-users/a7577cff-a448-4e44-91b0-6d9d9e4557c5n%40googlegroups.com
> .
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/729e46a6-9c39-4d56-b1d4-2d6a11e5d25en%40googlegroups.com.


Re: [racket-users] inadvertently upgraded Racket version. Would like to make an older installed version current.

2021-04-13 Thread 'John Clements' via Racket Users
raco pkg remove is definitely not what you want.

In general, I know there are languages (ocaml, haskell, rust) that put their 
package managers “outside” of the currently installed version, so it might make 
sense that a package manager command could be used to change to an earlier 
version of the language. 

In Racket, by contrast, the package manager is part of the installation, on the 
“inside”.

However, you can certainly have multiple versions of Racket installed at the 
same time.

The details of which one is “active”, and what that word even means, is highly 
dependent on what operating system you’re using. 

What operating system are you using?

John Clements

> On Apr 13, 2021, at 11:29, infodeveloperdon  
> wrote:
> 
> I inadvertently upgraded Racket version. Would like to make an older 
> installed version current.
> So now when I start DrRacket v8 is current.
> Is there a command that makes a specified version current?
> Does 
> raco pkg remove 
> effectively make the previous version current?
> Thanks. Don.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to racket-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/racket-users/a7577cff-a448-4e44-91b0-6d9d9e4557c5n%40googlegroups.com.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/29ed9c53-483b-414c-8a56-3dd9e0c449ec%40mtasv.net.


[racket-users] inadvertently upgraded Racket version. Would like to make an older installed version current.

2021-04-13 Thread infodeveloperdon
I inadvertently upgraded Racket version. Would like to make an older 
installed version current.
So now when I start DrRacket v8 is current.
Is there a command that makes a specified version current?
Does 
raco pkg remove 
effectively make the previous version current?
Thanks. Don.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/a7577cff-a448-4e44-91b0-6d9d9e4557c5n%40googlegroups.com.