0

i'm having issue installing Pylint in VS Code. When i type :

pip install pylint --trusted-host=pypi.python.org --trusted-host files.pythonhosted.org --proxy=http://proxy-web.companyname.com:80

it gaves ERROR: Could not find a version that satisfies the requirement pylint (from versions: none) ERROR: No matching distribution found for pylint

Anybody can help with this?

thank you

sirimiri
  • 509
  • 2
  • 6
  • 18

2 Answers2

1

as the documentation says, you can try to install with the source code.

here's the source file (The .gz) file.

once you extracted, and are on a terminal (or cmd) on the extracted directory. run:

python setup.py install

Or you can install it in editable mode, using

python setup.py develop
0

pip install pandas --trusted-host pypi.org --trusted-host files.pythonhosted.org --proxy=http://proxy-web.company.com:80

resolved by adding this, need to replace with company's proxy

sirimiri
  • 509
  • 2
  • 6
  • 18