Changing Python Executable

前端 未结 1 1420
时光取名叫无心
时光取名叫无心 2021-01-11 14:51

I\'m pretty new to programming, and very new to doing so in a UNIX environment, so please bear with me.

When I run

import sys
sys.executable
<         


        
相关标签:
1条回答
  • 2021-01-11 15:38

    Short

    You need to register your Python kernel with Jupyter, for it to find the "right" Python

    Long

    Jupyter is meant to work with multiple kernels, and languages; it is common for some users to have tens of kernels, many can be the same language, with small differences. You usually need to "tell" jupyter about these kernels, it is often referred to as "Installing a kernelspec". In your case you need to:

    • Install IPython & ipykernel for your Python 3
    • Using the ipykernel you just installed: install the kernelspec.

    You'll find instruction on above link, a few tip though:

    • You can always safely replace python by /full/path/to/python if you are unsure.
    • when using pip, you can always replace pip (or pip3) by /full/path/to/python -m pip to use the pip linked to the python you want.
    • If you are tempted to use sudo, don't. People telling you to use sudo get issues after a few month when their linux distribution need to be updated – unless you really know what you're doing.

    Once you've registered the Python kernel with Jupyter, it should just appear in the menus. You may need to refresh your browser though.

    Enjoy !

    0 讨论(0)
提交回复
热议问题