我有一个定制的python库,它作为Azure提要发布。我能够访问它,使用发布管道中的端点将其部署到其他服务器。为了测试目的,我正在尝试在本地访问/安装这个库在木星笔记本中。
来自Azure Devops文档- Ensure you have installed the latest version of the Azure Artifacts keyring from the "Get the tools" menu. Add a pip.ini (Windows) or pip.conf (Mac/Linux) file to your virtualenv and pip
我们在Hadoop集群中有CentOS 7服务器。Python和pip应该以相同的方式安装在所有服务器上,因为它是用Ansible完成的。但出于某种原因,有些服务器Python无法使用已安装的模块。例如,安装了大熊猫,但在python3.6中,我得到了一个“没有模块名为大熊猫”的错误。
$ python3.6
Python 3.6.2 (default, Aug 2 2017, 14:51:00)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-11)] on linux
Type "help", "copyright", "cr
我在系统中安装了多个版本的包,需要使用pip将特定的包安装到虚拟环境中。通过使用pip show <package name>,我可以看到包位于/usr/lib/pymodules/python2.7,如果我想更改usr/lib/bin的路径,我该怎么做?我已经将路径添加到.bashrc,并尝试使用add add2virtualenv,但它们似乎不起作用。
我在试着造一个巨蟒轮子。Pip被配置为使用自定义存储库,该存储库不受(全局)信任。跑步时
python -m build
因此,我要面对以下警告:
Uninstalling setuptools-41.2.0:
Successfully uninstalled setuptools-41.2.0
Looking in indexes: http://myRepository
WARNING: The repository located at myRepository is not a trusted or secure host and is being ignored. If this r
当我尝试使用pip安装一个包时,它首先尝试从一个不再存在的url中获取,这会导致以下错误
Cannot fetch index base URL http://xyz.xxx:8080/simple/
但是它继续从pypi.I下载和安装包。我想摆脱这个索引基url,我不想每次看到这个消息,我不记得我是如何添加这个url的,但它在某个点上是一个有效的私有包索引,我已经从/etc/host文件中删除了url,但是pip仍然试图从那个位置获取包。
突然,pip无法安装或找到任何软件包,甚至无法找到自己的版本。我多次重新安装python,我有python 3和pip的最新版本。我还试图清除pip缓存。什么都没用,这真的很烦人..。
错误:
>pip install redblacktree
ERROR: Could not find a version that satisfies the requirement redblacktree (from versions: none)
ERROR: No matching distribution found for redblacktree
WARNING: There was an
我用的是ubuntu。
我想安装tensorflow-gpu==1.15.0
python3.7 -m pip install tensorflow-gpu==1.15.0
我得到了这个,艾罗:
WARNING: pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available.
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None))
我正在使用最新的pip运行ubuntu 13.10。
我已经为我的公司代理安装了一整套SSL证书,如下所示: now。
Firefox不再抱怨无法识别的证书,但我仍然得到:
Could not fetch URL http://pypi.python.org/simple/: There was a problem confirming the
ssl certificate: [Errno 1] _ssl.c:509: error:14090086:SSL
routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
用pip?
对于以下命令:
virtualenv --system-site-packages `pwd`/.test
# load virtual environment
source `pwd`/.test/bin/activate
# install required python modules
# for some reason argparse is not included with credstash install but required at runtime :(
#PYPI_REPO=http://${PYPI_DNS}/aes/release/+simple/
#PYPI_D
我正在尝试使用pip从本地文件夹安装我自己的软件包。我在我的find-links中添加了一个带有本地文件夹的pip.ini选项,并将车轮保存在这个文件夹中。
如果车轮的版本是0.2.0,那就可以了。
如果版本是0.2.0dev0,那就可以了。
如果版本是0.2.0internal,我有以下错误:
Could not find a version that satisfies the requirement myownpackage (from versions: 0.2.0internal) No matching distribution found for myownp
我没有在pip install命令中使用--home或-前缀,但是这个错误不允许安装git。
error: subprocess-exited-with-error
× pip subprocess to install build dependencies did not run successfully.
│ exit code: 1
╰─> [8 lines of output]
Collecting setuptools>=40.8.0
Using cached setuptools-62.3.2-py3-none-any.wh