Questions tagged «pip»

用于有关Python软件包安装程序的问题



21
如何在macOS或OS X上安装pip?
这个问题的答案是社区的努力。编辑现有答案以改善此职位。它目前不接受新的答案或互动。 昨天我大部分时间都在寻找安装的明确答案pip(Python的软件包管理器)。我找不到一个好的解决方案。 如何安装?
1676 python  macos  pip  install 

11
使用pip安装特定的软件包版本
我正在尝试使用通过该--no-site-packages选项创建的新virtualenv安装MySQL_python适配器的1.2.2版本。PyPi中显示的当前版本是1.2.3。有没有办法安装旧版本?我发现有一篇文章指出应该这样做: pip install MySQL_python==1.2.2 但是,安装后,它仍显示MySQL_python-1.2.3-py2.6.egg-info在站点包中。这是此软件包专用的问题,还是我做错了什么?
1310 python  mysql  pip  pypi  mysql-python 

12
如何根据本地目录中的requirements.txt文件使用pip安装软件包?
这是问题所在 我有一个require.txt看起来像: BeautifulSoup==3.2.0 Django==1.3 Fabric==1.2.0 Jinja2==2.5.5 PyYAML==3.09 Pygments==1.4 SQLAlchemy==0.7.1 South==0.7.3 amqplib==0.6.1 anyjson==0.3 ... 我有一个本地存档目录,其中包含所有软件包和其他软件包。 我创建了一个新的virtualenv bin/virtualenv testing 激活它后,我尝试根据本地存档目录中的requirements.txt安装软件包。 source bin/activate pip install -r /path/to/requirements.txt -f file:///path/to/archive/ 我得到一些输出,似乎表明安装正常 Downloading/unpacking Fabric==1.2.0 (from -r ../testing/requirements.txt (line 3)) Running setup.py egg_info for package Fabric warning: no previously-included files matching '*' found under directory 'docs/_build' …
1082 python  virtualenv  pip 


9
为什么要在easy_install上使用pip?[关闭]
已关闭。这个问题是基于观点的。它当前不接受答案。 想改善这个问题吗?更新问题,以便通过编辑此帖子以事实和引用的形式回答。 3年前关闭。 一条推文中写道: 不要使用easy_install,除非您喜欢对自己的脸部进行刺伤。使用点子。 为什么要在easy_install上使用pip?难道不是PyPI和程序包作者最主要的原因吗?如果作者将废话源tarball(例如:缺少文件,没有setup.py)上传到PyPI,则pip和easy_install都将失败。除了化妆品的差异,为什么Python的人(如上面的鸣叫)似乎强烈地倾向于在点子的easy_install? (假设我们正在谈论由社区维护的Distribute软件包中的easy_install)

16
如何安装带有.whl文件的Python软件包?
我在Windows机器上安装Python软件包时遇到问题,想与Christoph Gohlke的Window二进制文件一起安装。(根据我的经验,这减轻了许多其他软件包安装的麻烦)。但是,仅.whl文件可用。 http://www.lfd.uci.edu/~gohlke/pythonlibs/#jpype 但是,如何安装.whl文件? 笔记 我已经找到了车轮上的文档,但是它们在解释如何安装.whl文件时似乎并不那么简单。 该问题与该问题重复,但未直接回答。

30
错误:找不到vcvarsall.bat
我试图安装Python软件包dulwich: pip install dulwich 但是我收到了一个神秘的错误消息: error: Unable to find vcvarsall.bat 如果我尝试手动安装软件包,也会发生相同的情况: > python setup.py install running build_ext building 'dulwich._objects' extension error: Unable to find vcvarsall.bat

21
pip安装mysql-python失败,并显示EnvironmentError:找不到mysql_config
这是我得到的错误 (mysite)zjm1126@zjm1126-G41MT-S2:~/zjm_test/mysite$ pip install mysql-python Downloading/unpacking mysql-python Downloading MySQL-python-1.2.3.tar.gz (70Kb): 70Kb downloaded Running setup.py egg_info for package mysql-python sh: mysql_config: not found Traceback (most recent call last): File "<string>", line 14, in <module> File "/home/zjm1126/zjm_test/mysite/build/mysql-python/setup.py", line 15, in <module> metadata, options = get_config() File "setup_posix.py", line 43, in get_config libs …
823 python  pip  mysql-python 

30
找不到pg_config可执行文件
我在安装psycopg2时遇到问题。尝试执行以下操作时出现以下错误pip install psycopg2: Error: pg_config executable not found. Please add the directory containing pg_config to the PATH or specify the full executable path with the option: python setup.py build_ext --pg-config /path/to/pg_config build ... or with the pg_config option in 'setup.cfg'. ---------------------------------------- Command python setup.py egg_info failed with error code 1 …
767 python  pip  psycopg2 

11
pip和conda有什么区别?
我知道pip是python软件包的软件包管理器。但是,我看到IPython网站conda上的安装用于安装IPython。 我可以pip用来安装IPython吗?conda我已经拥有了为什么还要用作另一个python软件包管理器pip? pip和之间有什么区别conda?

14
查找pip安装了哪个版本的软件包
使用pip,可以确定当前安装了哪个版本的软件包? 我知道,pip install XYZ --upgrade但是我想知道是否有类似的东西pip info XYZ。如果不是,最好的方法就是告诉我当前使用的版本。
708 python  pip 

6
从git repo分支安装pip
尝试pip安装仓库的特定分支。Google告诉我 点安装git + https://github.com/user/repo.git@branch 分支的名称是issue/34/oscar-0.6我这样做的,pip install https://github.com/tangentlabs/django-oscar-paypal.git@/issue/34/oscar-0.6但是它返回了404。 如何安装此分支?
685 python  git  pip 


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.