About 10,700,000 results
Open links in new tab
  1. VSCode does not detect installed python libraries and modules

    Aug 29, 2024 · I have a Python project open in VSCode that operates various libraries and it's composed of different modules. Venv is activated, and all libraries are installed in venv.

  2. How do add python libraries to AWS Lambda? - Stack Overflow

    Feb 7, 2023 · To use any 3rd party library in lambda you can use a lambda layer. install the dependency using following command pip3 install <your_package> -t . zip the package zip -r …

  3. Where are the python modules stored? - Stack Overflow

    Dec 24, 2015 · I have just installed a python module.Where is the module code actually stored on my machine? (is there a default [recommended] location that modules are stored)?

  4. How to install a new python module on VSCode? - Stack Overflow

    Aug 1, 2019 · I'm trying to install new python modules on my computer and I know how to install through the terminal, but I wish to know if there is a way to install a new module directly …

  5. Get the list of packages installed in Anaconda - Stack Overflow

    Mar 21, 2021 · I don't know about Anaconda specifically, but for generic Python, third-party packages are usually installed in the site-packages folder.

  6. How do I check the versions of Python modules? - Stack Overflow

    I installed the Python modules construct and statlib using setuptools: sudo apt-get install python-setuptools sudo easy_install statlib sudo easy_install construct How do I check their versions f...

  7. What is the best library in python to deal with excel files?

    The other libraries, such as xlrd and xlwt (unfortunately, the maintainer hasn't updated it since Aug 22, 2017), were designed in the past to handle the old version (.xls) files. They are not …

  8. What exactly is a python library? - Stack Overflow

    Aug 28, 2013 · In Python, the term "library" is most commonly used when referring to the Standard Library. The Standard Library comes with Python and is installed along with it, …

  9. Cmake is not able to find Python-libraries - Stack Overflow

    Jun 12, 2014 · You can fix the errors by appending to the cmake command the -DPYTHON_LIBRARY and -DPYTHON_INCLUDE_DIR flags filled with the respective folders. …

  10. python - How to install packages offline? - Stack Overflow

    What's the best way to download a python package and its dependencies from pypi for offline installation on another machine? Is there any easy way to do this with pip or easy_install? I'm …