Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
March 27, 2020 04:52 pm GMT

VSCode autocomplete on private package import do not working

Vscode autocomplete do not working when i import my private package from git and shows this message error on code line: Unable to import 'elixir_tools' pylint(import-error)

my setup.py structure:

from setuptools import setupsetup(    name='elixir_tools',    url='***',    author='Elixir AI',    author_email='***',    packages=[        'elixir_tools',        'elixir_tools.executors',        'elixir_tools.models',        'elixir_tools.transforms',        'elixir_tools.utils'    ],    install_requires=[        'pandas',        'numpy',        'datetime',        'xlrd',        'psycopg2-binary',        'flask_bcrypt',        'flake8',        'bayesian-optimization',        'scikit-learn',        'python-dateutil',        'xgboost',        'croston'    ],    version='0.1',    license='MIT',)

any suggestion?


Original Link: https://dev.to/freddsr/vscode-autocomplete-on-private-package-import-do-not-working-4cgl

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To