python installation in windows code example
Example 1: python setup.py install
python -m pip install --upgrade setuptools
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="<template-package-username>",
version="1.0.0",
author="<authorname>",
author_email="<[email protected]>",
description="<Template Setup.py package>",
long_description=long_description,
long_description_content_type="text/markdown",
url="<https://github.com/authorname/templatepackage>",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)
Example 2: install python3
echo This is for linux. (debian/unbuntu)
sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev wget
curl -O https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tar.xz
tar -xf Python-3.7.4.tar.xz
cd Python-3.7.4
./configure --enable-optimizations
make
sudo make altinstall
python3.7 --version
cd ../
Example 3: download python
Step 1: Download Python newest version from
https://www.python.org/downloads/
Step 2:Install Python
Step 3:Download Pycharm Community free version
Step 4:Install and open Pycharm
Step 5:Write print("Hello New World")
//Hurray you are about to start python