Create and install user packages Pip list provides a good view of the installed packages. And if you import from Python code, you should see the name of the installed package I can't see it. Please tell me what the cause is.
For your information, there were cases where it was imported
pip
It's a self-answer.
Inside the setup.py
file, you can import the same file name and module name.
If you know the exact cause, please leave a comment.
from setuptools import setup
setup(
name="z_stock_model", #<<<------------------------
version='1.0.1',
description='this module is rnn test module for lstm',
author='honna',
author_email='[email protected]',
url='honna.com',
py_modules=['z_stock_model'], #<<<------------------------
)
566 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
572 Understanding How to Configure Google API Key
596 GDB gets version error when attempting to debug with the Presense SDK (IDE)
884 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
© 2024 OneMinuteCode. All rights reserved.