iPython installed but not found

后端 未结 6 1827
清酒与你
清酒与你 2020-12-05 12:53

I\'ve recently deleted Anaconda and reinstalled python with brew. I\'ve installed everything according to these instructions.

Python works great, and all packages I\

6条回答
  •  独厮守ぢ
    2020-12-05 13:50

    The answer given by @evadeflow does the job, but there are several other packages installed with pip and it will be very uncomfortable to keep adding alias for each of them. A rather elegant way would be to add the path where these packages are installed to the $PATH variable. In my case adding the following line in ~/.bashrc did the job:

    export PATH=$PATH:/home/my_user_name/.local/bin
    

    Addl refs: https://askubuntu.com/q/551990/632996; https://askubuntu.com/q/556090

提交回复
热议问题