Reputation: 539
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
Upvotes: 0
Views: 1179
Reputation: 539
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
Upvotes: 0
Reputation: 2972
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
Upvotes: 1