-3

I just downloaded Python 3.8 on my Mac but I don't know how to add it to the path. I don't even know where to find the path. Do I need to download an IDE to use Python? I got Python Launcher and IDLE when I downloaded Python 3.8.

Jaspar
  • 1
  • 1

1 Answers1

0

I think, currently you can install python 3.8 via pyenv on Mac only. I tried to install 3.8 with pip a few weeks ago and found that pip has only 3.7. I am not 100 % sure, though. So I would recommend to install it via pyenv. Find a description how to do it on the github repo of pyenv

You do not need an IDE to run Python. You can invoke python scripts from the Terminal. If you use PyCharm, you can easily select the python version for the virtual environment PyCharm creates on a per-project basis.

Jonathan Scholbach
  • 4,925
  • 3
  • 23
  • 44