Questions tagged [pip]

PIP (Package Installer for Python) is a package manager for the Python language.

92 questions
0
votes
1 answer

Pip + virtualenv + Redhat SCL + proxy = not working

I am setting up a virtualenv based on Python 2.7 in Redhat Enterprise 6 (which ships with 2.6.x by default). I installed the SCL 2.7 version of Python and then created the virtualenv: $ scl enable python27 bash $ cd /my/project $ virtualenv -v…
user3758232
  • 109
  • 5
0
votes
2 answers

How to install python module(s) via pip using salt?

I need to install the paramiko module of python on multiple machines using the salt stack. I looked at the documentation about how to do this, but was not able to understand the syntax. Can someone please explain me line-by-line what happens in the…
Kristof Tak
  • 257
  • 1
  • 3
  • 14
0
votes
1 answer

How to install ncclient correctly on CentOS7?

I am able to install ncclient within a virtual environment on Ubuntu 14.04 server using python pip. Also need to install ncclient within virtual environment on CentOS7 Gnome Desktop platform. But I tried to install and establish communication using…
Praveen
  • 1
  • 4
0
votes
0 answers

RHEL 6.6 pip after python upgrade "ImportError: /usr/local/lib/python2.7/lib-dynload/array.so: undefined symbol: PyUnicodeUCS2_FromUnicode"

I originally have python 2.6 and installed 2.7 and want to use pip to install some libraries like futures (with an s :)). Unfortunately, it seems like pip's libraries has been messed up. When type pip on the command line it produces this…
otayeby
  • 101
  • 2
0
votes
1 answer

Are we drowning in package managers?

The current trend is to use language-oriented package manager, such as npm or bower for javascript, pip for python, gems for ruby and so on. As I understand the need for a dependency manager when you want to deploy your application (they all can do…
luxcem
  • 111
  • 1
  • 4
0
votes
1 answer

Installing scipy in virtualenv on Elastic Beanstalk

I'm using Amazon's Elastic Beanstalk to deploy an example Flask app. I can get a simple "Hello World" app deployed perfectly, but now I'm trying to deploy the app with scipy as a requirement. I've included the necessary packages in my…
0
votes
1 answer

How to enable PIP on an Azure VM?

Has anyone used the preview portal in Azure to configure a PIP for a VM? When I go into the IP Addresses tab the "enable" button is grayed out. The is for an "instance public IP". Is it just because the Preview Portal isn't always 100% just yet? I…
Trident50
  • 13
  • 1
  • 4
0
votes
1 answer

Could not find any downloads that satisfy the requirement iso8601>=0.1.9 for DevStack

My machine operating system is Ubuntu 12.04 I tried to implement the all in one openstack solution for development. But ./stack.sh did not succeed. It looks like a package problem for pip. so, I installed iso8601 manually by sudo apt-get install…
Shisoft
  • 161
  • 1
  • 11
0
votes
1 answer

Trouble with $PATH on debian

I think I have a problem with $PATH. I am running a shell script and it is complaining that it doesnt recognize the command even though when I run it manually it does. Shell Script: #!/bin/bash #…
Jimmy
  • 269
  • 4
  • 7
  • 23
0
votes
1 answer

How to install pip and other specific python modules onto a CentOS server that is air-gapped from the internet?

Ultimately, I'm trying to install SaltStack on a super computer that has no internet connection. And I'm not allowed to hook it to the internet. So far, I have installed an entire yum repo on the server and a CPAN. But the yum repo can't find…
Lynn
  • 299
  • 6
  • 16
0
votes
1 answer

Installing pip to a custom location

I am a little bit stuck when it comes to installing pip. Securely download get-pip.py. [2] Then run the following (which may require administrator access), to install (or upgrade to) the latest version of pip: $ python get-pip.py The trouble is…
Jimmy
  • 269
  • 4
  • 7
  • 23
0
votes
1 answer

Installing PIP on debain - Unknown command pip

I'm having a bit of a hard time installing PIP on a debian linux machine. This is the code I am using in a shell script: # Install setuptools python -c 'import setuptools' > /dev/null 2>&1 if [[ $? != 0 ]] ; then wget…
Jimmy
  • 269
  • 4
  • 7
  • 23
0
votes
1 answer

Pip timeouts with host reset mesage every time under VirtualBox

When trying to install requirements.txt (or anything else for the matter), pip just time-outs every time with host reset message. This happens only under VirtualBox (guest CentOS 6.4 64-bit, host Windows 7 64-bit), and only for pip/easy_install…
SyRenity
  • 3,179
  • 11
  • 57
  • 79
0
votes
1 answer

How to make pip or easy_install use aliases

I have some trouble installing python-mysqldb. The error I get is E: Could not perform immediate configuration on 'gcc'. Please see man 5 apt.conf under APT::Immediate-Configure for details. (2) So I tried installing it using pip or easy_install…
shym
  • 101
  • 2
0
votes
1 answer

Ubuntu 13.04 errors with Python PIP install

After trying to use Ubuntu 13.04 instead of Ubuntu 12.10 to run my Chef recepis against I am getting an error when it tries to run sudo pip install cElementTree supervisor STDOUT: Downloading/unpacking cElementTree Running setup.py egg_info for…
Phil Sturgeon
  • 291
  • 1
  • 3
  • 12