Using virtualenv and just trying to install pyodbc. All resources I can find claim this should be extremely straightforward. After all the basic installs of MySQL, etc., jus
Both --allow-unverified and --allow-external take package name as an argument.
From pip help install:
--allow-external Allow the installation of a package even if it
is externally hosted
--allow-unverified Allow the installation of a package even if it
is hosted in an insecure and unverifiable way
--allow-external requires an argument (name of th external to allow).--allow-unverified too .pip install --allow-external pyodbc, you are allowing the external called pyodbcpip install --allow-external pyodbc pydodbc is what you need, first pyodbc allows that external, second one actually tells pip which package to install.
From pip help install: --allow-external Allow the installation of a package even if it is externally hosted --allow-unverified Allow the installation of a package even if it is hosted in an insecure and unverifiable way
So your usage should be
pip install
or the little confusing:
pip install --allow-unverified
DO NOT use --allow-all-external when you just want to allow one and not ALL. It kills the whole purpose of putting in the security check.