Need assistance - zsh on Mac to run pyILPer - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: Not HP Calculators (/forum-7.html) +--- Forum: Not remotely HP Calculators (/forum-9.html) +--- Thread: Need assistance - zsh on Mac to run pyILPer (/thread-14137.html) |
Need assistance - zsh on Mac to run pyILPer - smp - 12-09-2019 07:10 PM I recently set up Anaconda and pyILPer on my MacBook Pro, for use with my PILBox and my new-to-me HP-71B. All was working fine. In my terminal window on my Mac, where I issued the command 'pyilper' to start pyILPer, I kept getting a message from the system that zsh is now the proper shell to be using. I ignored this for a while, but finally broke down and issued the change shell command the system was requesting. Now, of course, the new zsh does not know anything about pyILPer at all, and I can no longer get it to run. I am on a MacBook Pro, with the latest Mac OS 10.15.1 Catalina. Are there any other Mac users who can tell me what in the world I must do to set up a correct path to Anaconda and pyILPer on my Mac? Thanks very much, in advance, for any thoughts, hints, examples, or whatever might help. smp RE: Need assistance - zsh on Mac to run pyILPer - smp - 12-09-2019 08:15 PM After quite a bit of searching, I finally found where the pyilper program is located: /System/Volumes/Data/opt/anaconda3/bin/pyilper At least now I can invoke pyilper by typing in that path. smp RE: Need assistance - zsh on Mac to run pyILPer - Sylvain Cote - 12-09-2019 09:03 PM Starting with macOS 10.15 (Catalina) Apple changed the shell from bash to zsh. This mean that the configurations filenames has changed. Configuration files for bash (Bourne Again Shell) are
For some reason Anaconda is still updating one of the bash configuration files (~/.bash_profile or ~/.profile) instead of one of the zsh configurations files (~/.zprofile) What you need to do is copy the configuration data from the bash configuration file to the zsh configuration file. The configuration section to copy should look like the following: Code: # added by Anaconda3 YYYY.MM installer Note 2: do not forget to replace YOUR_USER_NAME by your actual home folder name Note 3: you will need to start a new shell to apply the updated configuration Note 4: to see the new configuration, from the command line type: export [RETURN] // you should see the string /Users/YOUR_USER_NAME/anaconda3/bin in your path variable Sylvain RE: Need assistance - zsh on Mac to run pyILPer - smp - 12-09-2019 09:31 PM Thanks a million, Sylvain! I'm no power user, by any stretch of the imagination. I'll slowly go through all that you've given me, and try to get this done. If (probably when) I have any questions, I'll post them back here. Thanks again! smp UPDATE: YES!!! All I needed to do was: cp .bash_profile .zprofile As you suggested, I logged out of all open Terminal windows, and quit the Terminal. Then when I did a fresh login to the Terminal, all I have to do is type: pyilper, and up it comes, just like before. Thank you very much for the details about what's in there and what I needed to do! RE: Need assistance - zsh on Mac to run pyILPer - Sylvain Cote - 12-09-2019 10:01 PM (12-09-2019 09:31 PM)smp Wrote: YES!!! All I needed to do was: cp .bash_profile .zprofileWell ... that was not what I was expecting you to do, but I am glad that it worked, I just hope that you did not loose anything in the process. What I was expecting you to do was, that you open up both files (˜/.bash_profile & ˜/.zprofile) with a text editor, copy & paste the conda init section from the .bash_profile file to the .zprofile file and then save the .zprofile file. That way you import the conda configuration from the .bash_profile without loosing your current configuration setting in .zprofile. Sorry if my instructions were not clear enough. Sylvain RE: Need assistance - zsh on Mac to run pyILPer - smp - 12-09-2019 11:10 PM (12-09-2019 10:01 PM)Sylvain Cote Wrote: Well ... that was not what I was expecting you to do, but I am glad that it worked, I just hope that you did not loose anything in the process. Your instructions were perfect for me, Sylvain. I checked for all the files you mentioned, and the only one I had was the .bash_profile, and it’s contents were only those put there by Anaconda, like you showed in your post. Since I had no .zprofile at all, I copied the .bash_profile to create one. That got me back to where I was. Like I said, I’m not an experienced user so I did not have any other setups to be affected. Thanks again! smp RE: Need assistance - zsh on Mac to run pyILPer - cruff - 12-10-2019 12:55 AM (12-09-2019 07:10 PM)smp Wrote: I kept getting a message from the system that zsh is now the proper shell to be using. I ignored this for a while, but finally broke down and issued the change shell command the system was requesting. Don't give in to the zsh zealots? I don't see this on my Mac, I use tcsh for my shell. Is Apple making noises about removing bash? I'd bet a lot of stuff depends on it being there. This is the type of annoying behavior by vendors, forcing changes for no good reason. RE: Need assistance - zsh on Mac to run pyILPer - Thomas Okken - 12-10-2019 03:56 AM I had forgotten about the whole zsh thing already... After upgrading to Catalina, when I saw that the default shell had changed, a quick Google showed me how to change it back: chsh -s /bin/bash. It is annoying to get such a change foisted upon you without asking, but I'm not too worried about Apple removing bash altogether. As cruff pointed out, there are far too many shell scripts out there that depend on bash. RE: Need assistance - zsh on Mac to run pyILPer - pascal_meheut - 12-10-2019 05:54 AM (12-10-2019 12:55 AM)cruff Wrote: Don't give in to the zsh zealots? I don't see this on my Mac, I use tcsh for my shell. Is Apple making noises about removing bash? I'd bet a lot of stuff depends on it being there. This is the type of annoying behavior by vendors, forcing changes for no good reason. There is a good reason: recent shell such as zsh or fish offers lot of stuff bash doesn't. One can still prefer bash and I do not like zsh complex configuration or how it can becomes slow once you load some extensions or regret that fish implies to change some habits but they are interesting. |