Is Python a Command line interface on Linux?

I was having a difficult time finding the answer for this, Is Python a Command line interface on Linux, which need to run via terminal or there is a gui for it?

One Python is for the system and can be accessed via the terminal, not recommended. Please Install Idle for using python GUI.

sudo apt install idle

I prefer spyder, Can I get it on Linux?

sudo apt-get update

sudo apt-get install curl

cd /tmp

curl –O https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh

sha256sum Anaconda3–2020.02–Linux–x86_64.sh

69581cf739365ec7fb95608eef694ba959d7d33b36eb961953f2b82cb25bdf5a Anaconda3-2019.07-Linux-x86_64.sh

bash Anaconda3-2020.02-Linux-x86_64.sh

source ~/.bashrc

conda info

conda update conda

conda update anaconda

conda create ––name test_environment python=3

conda activate test_environment
1 Like

I don't know why you also gave the commands for creating a test. But any way thanks.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.