mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-06-20 04:44:12 -04:00
install the virtualenv package with pip because the apt version is old and conflicts with the recent version of pip we're using
This commit is contained in:
parent
99feeab581
commit
abca90a128
4 changed files with 5 additions and 3 deletions
|
@ -9,7 +9,6 @@
|
||||||
become: true
|
become: true
|
||||||
apt: name={{item}} state=present
|
apt: name={{item}} state=present
|
||||||
with_items:
|
with_items:
|
||||||
- python-virtualenv
|
|
||||||
- vnc4server
|
- vnc4server
|
||||||
- chromium-browser
|
- chromium-browser
|
||||||
- xfonts-base
|
- xfonts-base
|
||||||
|
|
|
@ -19,6 +19,10 @@
|
||||||
command: python3 setup.py install chdir=/tmp/pip-8.1.2
|
command: python3 setup.py install chdir=/tmp/pip-8.1.2
|
||||||
creates=/usr/local/lib/python2.7/dist-packages/pip-8.1.2-py2.7.egg/pip/__init__.py
|
creates=/usr/local/lib/python2.7/dist-packages/pip-8.1.2-py2.7.egg/pip/__init__.py
|
||||||
become: true
|
become: true
|
||||||
|
- name: run "pip install virtualenv"
|
||||||
|
command: pip install virtualenv
|
||||||
|
creates=/usr/local/lib/python3.4/dist-packages/virtualenv.py
|
||||||
|
become: true
|
||||||
- command: id {{user}}
|
- command: id {{user}}
|
||||||
register: id_user
|
register: id_user
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
apt: name={{item}} state=present
|
apt: name={{item}} state=present
|
||||||
with_items:
|
with_items:
|
||||||
- gcc
|
- gcc
|
||||||
- python-virtualenv
|
|
||||||
- python3.4
|
- python3.4
|
||||||
- libpython3.4-dev
|
- libpython3.4-dev
|
||||||
- libffi-dev
|
- libffi-dev
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -32,7 +32,7 @@ def find_package_data(package):
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='brozzler',
|
name='brozzler',
|
||||||
version='1.1b7.dev111',
|
version='1.1b7.dev112',
|
||||||
description='Distributed web crawling with browsers',
|
description='Distributed web crawling with browsers',
|
||||||
url='https://github.com/internetarchive/brozzler',
|
url='https://github.com/internetarchive/brozzler',
|
||||||
author='Noah Levitt',
|
author='Noah Levitt',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue