Nothing Special   »   [go: up one dir, main page]

Python

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

//how to install modules in python

import os

os.system("pip install beautifulsoup4")

or

import subprocess

exe = subprocess.Popen("pip install beautifulsoup4")

exe_out = exe.communicate()

print(exe_out)

You might also like