question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

CalledProcessError while pip install

See original GitHub issue

I tried to install djangocms with the djangocms-installer but it always failes. Tested on fedora:22 and ubuntu:14.04 with python3 and python2. After answering the questions it takes some time and then this messages appear:

Please wait while I install dependencies
Command "/srv/venv/bin/python3.4 -c "import setuptools, tokenize;__file__='/tmp/pip-build-ywunetca/Pillow/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-dd_zxv3n-record/install-record.txt --single-version-externally-managed --compile --install-headers /srv/venv/include/site/python3.4/Pillow" failed with error code 1 in /tmp/pip-build-ywunetca/Pillow
Failure occurred. Do you want to cleanup by removing /srv/cms? [Y/N] y
Removing everything under /srv/cms
Traceback (most recent call last):
  File "/srv/venv/lib/python3.4/site-packages/djangocms_installer/main.py", line 33, in execute
    config_data.requirements, config_data.pip_options
  File "/srv/venv/lib/python3.4/site-packages/djangocms_installer/install/__init__.py", line 90, in requirements
    subprocess.check_call(['pip'] + args)
  File "/usr/lib/python3.4/subprocess.py", line 561, in check_call
    raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['pip', 'install', '-q', 'django-cms<3.2', 'django-treebeard>=2.0', 'https://github.com/divio/djangocms-admin-style/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-column/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-flash/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-googlemap/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-inherit/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-link/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-style/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-text-ckeditor/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-file/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-picture/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-teaser/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-video/archive/master.zip?1446510328.1703925', 'Django<1.8', 'pytz', 'django-reversion>=1.8.2,<1.8.6', 'django-classy-tags>=0.3.4.1', 'html5lib', 'Pillow>=2.3', 'django-sekizai>=0.7', 'six']' returned non-zero exit status 1

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/srv/venv/bin/djangocms", line 11, in <module>
    sys.exit(execute())
  File "/srv/venv/lib/python3.4/site-packages/djangocms_installer/main.py", line 64, in execute
    'http://djangocms-installer.rtfd.org\n' % e).with_traceback(tb)
  File "/srv/venv/lib/python3.4/site-packages/djangocms_installer/main.py", line 33, in execute
    config_data.requirements, config_data.pip_options
  File "/srv/venv/lib/python3.4/site-packages/djangocms_installer/install/__init__.py", line 90, in requirements
    subprocess.check_call(['pip'] + args)
  File "/usr/lib/python3.4/subprocess.py", line 561, in check_call
    raise CalledProcessError(retcode, cmd)
OSError: Command '['pip', 'install', '-q', 'django-cms<3.2', 'django-treebeard>=2.0', 'https://github.com/divio/djangocms-admin-style/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-column/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-flash/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-googlemap/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-inherit/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-link/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-style/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-text-ckeditor/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-file/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-picture/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-teaser/archive/master.zip?1446510328.1703925', 'https://github.com/divio/djangocms-video/archive/master.zip?1446510328.1703925', 'Django<1.8', 'pytz', 'django-reversion>=1.8.2,<1.8.6', 'django-classy-tags>=0.3.4.1', 'html5lib', 'Pillow>=2.3', 'django-sekizai>=0.7', 'six']' returned non-zero exit status 1
Documentation available at http://djangocms-installer.rtfd.org

Issue Analytics

  • State:closed
  • Created 8 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
sedrubalcommented, Dec 13, 2015

Thanks 😉

0reactions
sedrubalcommented, Dec 12, 2015

Ah ok… I don’t have time to contribute and I don’t know Restructured Text well… But please link libraries in README-installation section like this:

“Before using djangocms-installer verify you have all required libraries installed. See libraries for more info”

And you can add libraries I mentioned above. This is tested on fedora 22 and 23. Meanwhile fedora uses dnf instead of yum. But the package names are mostly the same. Maybe you want add this, too…

Read more comments on GitHub >

github_iconTop Results From Across the Web

subprocess.CalledProcessError: Command pip install pkg ...
Using Python 3.9.6, unable to get the below code executed and its throwing error for --pkg-- package. Error is given at below. However,...
Read more >
subprocess.CalledProcessError, I can't install on python 3.6
You are using pip version 10.0.1, however version 18.1 is available. You should consider upgrading via the 'pip install --upgrade pip' command.
Read more >
subprocess — Subprocess management — Python 3.11.1 ...
A ValueError will be raised if Popen is called with invalid arguments. check_call() and check_output() will raise CalledProcessError if the called process ...
Read more >
Designer: CalledProcessError while installing a Package: Ret...
Hi Team, Had tried the commands below to reset the Python Tool. But my python/packages are not working from that moment.
Read more >
Command '('lsb_release', '-a')' return non-zero exit status 1 " is ...
During dependency installation, the error message "subprocess.CalledProcessError: Command '('lsb_release', '-a')' return non-zero exit ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found