how to install python libraries
python -m pip install SomePackage
how to install python libraries
python -m pip install SomePackage
python setup.py install
# This to install it via pip
python -m pip install --upgrade setuptools
# Here is what setup.py might look like:
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="<template-package-username>", # Replace with your 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',
)
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