Questions tagged [pypi]

PyPI, also known as the Python Package Index, serves as a hub for software specifically designed for use with the Python programming language. Make sure not to mistake it for PyPy, which is an entirely different language implementation.

My PyPI installed package is unable to detect the chromedriver file

After creating a python package and publishing it in PyPI, I encountered an issue with the chromedriver selenium code. Despite adding the chromedriver file to the PyPI package folder and specifying the file path in the code as: driver_path= Path.cwd() / &q ...