当尝试使用pip安装requests或任何东西时,它会收集选项,然后每次都会给我这个错误。我不能使用pip来安装任何东西。
C:\Users\evand>pip3 install requests
Collecting requests
ERROR: Could not install packages due to an EnvironmentError: Could not find a suitable TLS CA certificate bundle, invalid path: path/to/ca-bundle.crt
pip的版本
C:\Users\evand>pi
我在MACOSX 10.15.7(Catalina)上运行python脚本。在我的Bash配置文件中,我有下面这行:export PIP_REQUIRE_VIRTUALENV=false
但是,每次我尝试运行任何python脚本时,都会显示以下错误:ERROR: Could not find an activated virtualenv (required).
如果有人能帮我解决这个问题,我将不胜感激。我尝试了stackoverflow中讨论的多种解决方案,但没有一个对我有效。
我的pip版本被关闭了--每个pip命令都在说:
You are using pip version 6.0.8, however version 8.1.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
我不喜欢这里给出的答案:,因为他们都想让pip与RH版本脱节。
因此,我尝试用这个VagrantFile安装一个干净的系统:
Vagrant.configure("2") do |config|
config.ssh.use
我目前正在使用VS代码,希望与.mdb文件进行交互。
File "d:/UDtools/CostEstimator/vsWorkspace/pyOdbcv1.py", line 1, in <module>
import pyodbc
ModuleNotFoundError: No module named 'pyodbc'
pip installed in cmd, pip installed again in VS terminal: Requirement already satisfied.
我对这件事有点陌生。
根据,我可以指示pip使用我的私有pypi存储库,而不是官方的存储库:
For pip this can be done by setting the environment variable PIP_INDEX_URL in your .bashrc/.profile/.zshrc:
export PIP_INDEX_URL=http://localhost:8080/simple/
因此,我在Debian服务器上将我的私有存储库(例如http://pypi.mycompany.com/simple )添加到/etc/profile中。然而,pip仍然会引发错误:
john@server:~