0

I am trying to connect to the machine and work in Jupyter Notebook, however I couldn't install "pip". When I open termius and try to install Jupyter Notebook package "The program 'pip' is currently not installed. You can install it by typing:" message occurs. All I want is install pip and connect Jupyter Notebook.

I am using Mac OS.

How can I fix this problem?

halfer
  • 19,471
  • 17
  • 87
  • 173

1 Answers1

0

Assuming you have python3 installed already on your Mac OS computer (see this post if you're unsure about your python version), you may use a Terminal to do the following:

  1. Run this command to download pip

    curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
    
  2. Execute the downloaded file

    python3 get-pip.py
    
  3. Verify pip has been installed with the latest version

    pip3 --version
    
  4. Install Jupyter Notebook with pip

    pip3 install notebook
    
  5. You may now run Jupyter Notebook with the following command

    jupyter notebook
    
yona
  • 344
  • 1
  • 7
  • Thank you so much, I followed these steps and on 4th step, ERROR: Package 'terminado' requires a different Python: 3.5.2 not in '>=3.6' mesages occured. Now I have another problem: upgrading my python3! :) But, really thanks already. – Aslı Kuşdemir Sep 28 '20 at 07:00