install python packages in python shell
import subprocess
import sys
def install(package):
subprocess.check_call([sys.executable, "-m", "pip", "install", package])
install python packages in python shell
import subprocess
import sys
def install(package):
subprocess.check_call([sys.executable, "-m", "pip", "install", package])
install python linux
In RHEL & CENTOS::
Step 1: Open a Terminal and add the repository to your Yum install.
sudo yum install -y https://repo.ius.io/ius-release-el7.rpm
Step 2: Update Yum to finish adding the repository.
sudo yum update
Step 3: Download and install Python.
sudo yum install -y python36u python36u-libs python36u-devel python36u-pip
For verification ::
python3.6 -V
In ubuntu ::
$ sudo apt-get update
$ sudo apt-get install python3.6
install python shell
#To install python from shell you need to install homebrew first:
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
#Make sure you have the latest version:
$ brew update && brew upgrade
#Then just run
$ brew install python3
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us