Skip to content

LangChain-OpenTutorial/langchain-opentutorial-pypi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LangChain-OpenTutorial PyPi

  • This is a package for LangChain-OpenTutorial.

Package File Creation

  1. Install Dependency Packages (First Time Only)
  • Ensure that setuptools and wheel are up-to-date.
pip install --upgrade setuptools wheel
  1. Create Package
  • Move to the project root directory in the terminal and execute the following command:
python setup.py sdist bdist_wheel
  • This command generates distribution-ready package files (.tar.gz and .whl) in the dist/ directory.
  1. Test Package Installation
  • Install the generated package locally for testing.
pip install dist/langchain_opentutorial-0.0.0-py3-none-any.whl
  • After local testing, upload the package to PyPI using twine.
  1. Install twine
  • Install twine to upload the package to PyPI.
pip install twine
  1. Upload to PyPI
  • Use twine to upload the package to PyPI.
twine upload dist/*
  • A PyPI account is required, and login credentials will be needed.

About

langchain opentutorial utility package for Open Tutorial

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published