Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
tutorials:advanced:jupyter [2022/06/21 16:03] – [Step 4: Test if it worked] arthurtutorials:advanced:jupyter [2022/06/21 16:21] – [Troubleshooting] arthur
Line 104: Line 104:
 $ sudo -E python3 get-pip.py $ sudo -E python3 get-pip.py
 </code> </code>
-But maybe you should just update your Ubuntu. +But maybe you should just update your Ubuntu. Before 20.04 python 2.7 is the default, after it's 3.6+. Check your version with 'python --version', and also your 'pip --version', because whether you install package with pip or pip3 will only install it for the respective version. 
-Or maybe ask friend or the internet to help you getting Jupyter to run.+ 
 +If there are multiple people working on the same PC and you want to install the stuff only for yourself, you can specify that with 'pip install --user <package>'
 + 
 +When the jupyter installation tells there are version requirements for certain packages you can install the specific version like this: 
 +<code bash> 
 +pip install --user traitlets==5.2.2.post1 
 +pip install --user ipython==7.23.1 
 +</code> 
 +That specific version of traitlets also fixes a bug with jupyter-lab. ipython can be outdated if previously installed via aptitude.
  
 === Step 3 === === Step 3 ===